diff options
author | Alain Frisch <alain@frisch.fr> | 2012-09-26 04:18:08 +0000 |
---|---|---|
committer | Alain Frisch <alain@frisch.fr> | 2012-09-26 04:18:08 +0000 |
commit | 90c353e98c74e8f16cdbc150502592466d400386 (patch) | |
tree | b2cc4d043de367f26655028b452cf9de37086d04 /otherlibs/win32unix/winwait.c | |
parent | dd78691ec4a96fa489ba556841c653bc438e22da (diff) |
#5766: MSVC port broken following switch to winsock2.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12956 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/winwait.c')
-rw-r--r-- | otherlibs/win32unix/winwait.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/otherlibs/win32unix/winwait.c b/otherlibs/win32unix/winwait.c index c81bc4f35..4eb0fda45 100644 --- a/otherlibs/win32unix/winwait.c +++ b/otherlibs/win32unix/winwait.c @@ -13,13 +13,13 @@ /* $Id$ */ -#include "unixsupport.h" -#include <windows.h> #include <mlvalues.h> #include <alloc.h> #include <memory.h> -#include <sys/types.h> #include <signals.h> +#include "unixsupport.h" +#include <windows.h> +#include <sys/types.h> static value alloc_process_status(HANDLE pid, int status) { |