]> andersk Git - openssh.git/blobdiff - openbsd-compat/bsd-cygwin_util.c
- (djm) [openbsd-compat/bsd-arc4random.c] Fix math bug that caused bias
[openssh.git] / openbsd-compat / bsd-cygwin_util.c
index b408dde2db6b9b8d38a2caceed61c45620dca9d2..dbf8176b6225f12beb576f1c6feeebd72137447c 100644 (file)
 
 #ifdef HAVE_CYGWIN
 
-#include <fcntl.h>
-#include <stdlib.h>
+#if defined(open) && open == binary_open
+# undef open
+#endif
+#if defined(pipe) && open == binary_pipe
+# undef pipe
+#endif
+
+#include <sys/types.h>
+#include <sys/stat.h>
 #include <sys/utsname.h>
 #include <sys/vfs.h>
+
+#include <fcntl.h>
+#include <stdlib.h>
+#include <unistd.h>
 #include <windows.h>
+
 #include "xmalloc.h"
 #define is_winnt       (GetVersion() < 0x80000000)
 
 #define ntsec_off(c)   ((c) && strstr((c),"nontsec"))
 #define ntea_on(c)     ((c) && strstr((c),"ntea") && !strstr((c),"nontea"))
 
-#if defined(open) && open == binary_open
-# undef open
-#endif
-#if defined(pipe) && open == binary_pipe
-# undef pipe
-#endif
-
 int 
 binary_open(const char *filename, int flags, ...)
 {
This page took 0.033659 seconds and 4 git commands to generate.