Commit 4d076da4 authored by Ross Lagerwall's avatar Ross Lagerwall

Issue #11592: Fix compilation warnings in os module.

parent 8d281344
......@@ -59,6 +59,10 @@ corresponding Unix manual entries for more information on calls.");
#include "osdefs.h"
#endif
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif /* HAVE_SYS_TYPES_H */
......@@ -103,10 +107,6 @@ corresponding Unix manual entries for more information on calls.");
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.h>
#endif
#endif
/* Various compilers have only certain posix functions */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment