diff options
-rw-r--r-- | src/H5FDstream.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5FDstream.c b/src/H5FDstream.c index fd5e306..5c2e6ed 100644 --- a/src/H5FDstream.c +++ b/src/H5FDstream.c @@ -30,6 +30,7 @@ #include <H5FDpublic.h> /* VFD structures */ #include <H5MMprivate.h> /* memory allocation */ #include <H5Ppublic.h> /* files */ +#include <H5Pprivate.h> /* VFD prototypes */ #include <H5FDstream.h> /* Stream VFD header */ #ifdef H5FD_STREAM_HAVE_UNIX_SOCKETS @@ -44,6 +45,9 @@ #ifdef H5_HAVE_NETINET_TCP_H #include <netinet/tcp.h> /* socket stuff */ #endif +#ifdef H5_HAVE_SYS_FILIO_H +#include <sys/filio.h> /* socket stuff */ +#endif #endif #ifndef H5_HAVE_SOCKLEN_T @@ -898,7 +902,7 @@ static herr_t H5FD_stream_close (H5FD_t *_stream) * *------------------------------------------------------------------------- */ -static herr_t H5FD_stream_query (const UNUSED H5FD_t *_f, +static herr_t H5FD_stream_query (const H5FD_t UNUSED *_f, unsigned long *flags /* out */) { FUNC_ENTER (H5FD_stream_query, SUCCEED); |