Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make sure strdup is declared
authorChristophe Thiéry <christopho128@gmail.com>
Tue, 26 Apr 2011 15:49:47 +0000 (17:49 +0200)
committerChristophe Thiéry <christopho128@gmail.com>
Tue, 26 Apr 2011 15:49:47 +0000 (17:49 +0200)
src/simix/smx_user.c

index 615d7aa..fb75607 100644 (file)
@@ -4,9 +4,10 @@
 
 /* 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. */
-
-#define _ISOC99_SOURCE /* isfinite() */
-#include <math.h> /* isfinite() */
+#define _SVID_SOURCE    /* strdup */
+#define _ISO_C99_SOURCE /* isfinite() */
+#define _ISOC99_SOURCE  /* isfinite() */
+#include <math.h>       /* isfinite() */
 
 #include "private.h"
 #include "mc/mc.h"