X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e4abd3f271729beeff499da36267bfb274dd1f6d..HEAD:/include/xbt/module.h diff --git a/include/xbt/module.h b/include/xbt/module.h index 3fc85f9f0d..601f7f400b 100644 --- a/include/xbt/module.h +++ b/include/xbt/module.h @@ -1,16 +1,26 @@ /* module - modularize the code */ -/* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2004-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#ifndef _XBT_MODULE_H -#define _XBT_MODULE_H +#ifndef XBT_MODULE_H +#define XBT_MODULE_H -#include /* XBT_PUBLIC */ +// Deprecation warning on include (remove entire file with XBT_ATTRIB_DEPRECATED_v338) +#warning xbt/module.h is deprecated and will be removed after v3.37. -XBT_PUBLIC(void) xbt_init(int *argc, char **argv); -XBT_PUBLIC(void) xbt_exit(void); -#endif /* _XBT_MODULE_H */ +#include +#include + +SG_BEGIN_DECL + +XBT_ATTRIB_DEPRECATED_v338("Please use simgrid_init(&argc, argv) instead") static void xbt_init(int* argc, char** argv) +{ + simgrid_init(argc, argv); +} + +SG_END_DECL + +#endif /* XBT_MODULE_H */