From: mquinson Date: Thu, 8 Sep 2005 19:31:33 +0000 (+0000) Subject: Load the headers we need, don't rely on some random other ones to load this one X-Git-Tag: v3.3~3655 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/fc8db9624f3a2e1ee50cf048601dcf05ec9c0393 Load the headers we need, don't rely on some random other ones to load this one git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1702 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Transport/transport_plugin_tcp.c b/src/gras/Transport/transport_plugin_tcp.c index 256820f776..d8bc0678f1 100644 --- a/src/gras/Transport/transport_plugin_tcp.c +++ b/src/gras/Transport/transport_plugin_tcp.c @@ -16,6 +16,10 @@ #include "xbt/ex.h" #include "transport_private.h" +#ifdef HAVE_READV +#include +#endif + #ifndef MIN #define MIN(a,b) ((a)<(b)?(a):(b)) #endif