X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/24d67cebdedcbdd59000ed9439c1a8c51cd98a24..647b236abe6aacb7f3881369d4cb63e27b75aa8f:/include/smpi/smpi_helpers.h diff --git a/include/smpi/smpi_helpers.h b/include/smpi/smpi_helpers.h index 9f6f0b5333..be15a24c9f 100644 --- a/include/smpi/smpi_helpers.h +++ b/include/smpi/smpi_helpers.h @@ -1,7 +1,16 @@ -#ifndef MPI_HELPERS_H -#define MPI_HELPERS_H +/* Copyright (c) 2018-2019. The SimGrid Team. All rights reserved. */ -#include /* Load it before the define next line to not mess with the system headers */ +/* 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 SMPI_HELPERS_H +#define SMPI_HELPERS_H + +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + +#include #define sleep(x) smpi_sleep(x) #define usleep(x) smpi_usleep(x) @@ -13,5 +22,6 @@ #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