Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Load the headers we need, don't rely on some random other ones to load this one
[simgrid.git] / src / gras / Transport / transport_plugin_tcp.c
index 256820f..d8bc067 100644 (file)
 #include "xbt/ex.h"
 #include "transport_private.h"
 
+#ifdef HAVE_READV
+#include <sys/uio.h>
+#endif       
+
 #ifndef MIN
 #define MIN(a,b) ((a)<(b)?(a):(b))
 #endif