Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Move all #include directives before any code for C++ too.
[simgrid.git] / include / smpi / smpi_helpers.h
index 9f6f0b5..be15a24 100644 (file)
@@ -1,7 +1,16 @@
-#ifndef MPI_HELPERS_H
-#define MPI_HELPERS_H
+/* Copyright (c) 2018-2019. The SimGrid Team. All rights reserved.          */
 
-#include <sys/time.h> /* 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 <smpi/smpi_helpers_internal.h>
 
 #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