Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sonar: dont't duplicate declarations.
[simgrid.git] / include / xbt / module.h
1 /* module - modularize the code                                             */
2
3 /* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef XBT_MODULE_H
9 #define XBT_MODULE_H
10
11 #include <xbt/misc.h>           /* XBT_PUBLIC */
12
13 SG_BEGIN_DECL()
14
15 XBT_PUBLIC void xbt_init(int* argc, char** argv);
16
17 SG_END_DECL()
18
19 #endif /* XBT_MODULE_H */