Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add support fort getopt_long_only, as mpimemu uses it
[simgrid.git] / include / smpi / smpi_helpers.h
index 13ccaaf..092d64d 100644 (file)
@@ -2,7 +2,7 @@
 #define MPI_HELPERS_H
 
 #ifndef _GNU_SOURCE
-  #define _GNU_SOURCE
+#define _GNU_SOURCE
 #endif
 
 #include <unistd.h>
@@ -33,5 +33,6 @@ int smpi_getopt (int argc,  char *const *argv,  const char *options);
 
 #define getopt(x,y,z) smpi_getopt(x,y,z)
 #define getopt_long(x,y,z,a,b) smpi_getopt_long(x,y,z,a,b)
+#define getopt_long_only(x,y,z,a,b) smpi_getopt_long_only(x,y,z,a,b)
 
 #endif