Module Name:    src
Committed By:   yamt
Date:           Wed Aug 19 04:22:54 UTC 2009

Modified Files:
        src/include: strings.h

Log Message:
include <stdint.h> instead of <sys/types.h>.
the latter pulls FD_SET etc and it makes wine-1.1.27's winsock vs unixsocket
namespace dance unhappy.  for more information, grep
        Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library
in their source.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/include/strings.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/include/strings.h
diff -u src/include/strings.h:1.16 src/include/strings.h:1.17
--- src/include/strings.h:1.16	Tue Jul 21 16:27:54 2009
+++ src/include/strings.h	Wed Aug 19 04:22:53 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: strings.h,v 1.16 2009/07/21 16:27:54 joerg Exp $	*/
+/*	$NetBSD: strings.h,v 1.17 2009/08/19 04:22:53 yamt Exp $	*/
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -46,7 +46,7 @@
 
 #include <sys/cdefs.h>
 
-#include <sys/types.h>
+#include <stdint.h>
 
 __BEGIN_DECLS
 int	 bcmp(const void *, const void *, size_t);

Reply via email to