netapi32: Fix the compilation on Solaris by including errno.h instead of sys/errno.h.

Francois Gouget fgouget at free.fr
Fri Dec 2 08:29:04 CST 2011


---

I have tested this on FreeBSD 7.0, Solaris 10u9, Debian Testing, Debian 
4.0 and Leopard and they are all happy with the standard errno.h 
header instead of the non-standard sys/errno.h one.

 dlls/netapi32/access.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/dlls/netapi32/access.c b/dlls/netapi32/access.c
index d3b9063..c48c693 100644
--- a/dlls/netapi32/access.c
+++ b/dlls/netapi32/access.c
@@ -21,9 +21,7 @@
 #include "config.h"
 #include <stdarg.h>
 #include <fcntl.h>
-#ifdef HAVE_SYS_ERRNO_H
-#include <sys/errno.h>
-#endif
+#include <errno.h>
 #ifdef HAVE_SYS_WAIT_H
 #include <sys/wait.h>
 #endif
-- 
1.7.7.1




More information about the wine-patches mailing list