Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Visual C++ need sys/stat.h for open() function
[simgrid.git] / src / gras / Transport / transport_plugin_file.c
index 7b20968..bfb9693 100644 (file)
 #include "gras/Transport/transport_private.h"
 #include "xbt/ex.h"
 
+#ifdef WIN32
+#include <sys/stat.h>
+#endif
+
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras_trp_file,gras_trp,
        "Pseudo-transport to write to/read from a file");