X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/25e228f53f694b5b97674343dac6f44f6fc1f73f..a69f8338676e77525c4353c1099137857ca02c33:/include/smpi/smpi_helpers.h diff --git a/include/smpi/smpi_helpers.h b/include/smpi/smpi_helpers.h index b76af574da..092d64d089 100644 --- a/include/smpi/smpi_helpers.h +++ b/include/smpi/smpi_helpers.h @@ -1,6 +1,10 @@ #ifndef MPI_HELPERS_H #define MPI_HELPERS_H +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + #include #include /* Load it before the define next line to not mess with the system headers */ #if _POSIX_TIMERS @@ -29,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