Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use a nice va_copy if none was provided by the system
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 1 Jul 2005 20:32:24 +0000 (20:32 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 1 Jul 2005 20:32:24 +0000 (20:32 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1525 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/xbt/log.c
src/xbt/snprintf.c
testsuite/xbt/ex_test_ts.c

index c99b421..7fda9b9 100644 (file)
@@ -7,7 +7,9 @@
 /* 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. */
 
+
 #include <stdarg.h>
+#include "gras_config.h" /* to get a workgin stdarg.h */
 #include <ctype.h>
 
 #include "xbt_modinter.h"
index 4f15618..b6f7b75 100644 (file)
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdarg.h>
+#include "gras_config.h" /* to get a working stdarg.h */
 #include <assert.h>
 #include <errno.h>
 
index 7e0e693..b86c81e 100644 (file)
@@ -32,6 +32,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <stdarg.h>
+#include "gras_config.h"
 
 #include "ex_test_ts.h"