OSDN Git Service

* include/cygwin/types.h: Use correct ifdef guard for u_ definitions.
authorcgf <cgf>
Thu, 13 Feb 2003 15:37:06 +0000 (15:37 +0000)
committercgf <cgf>
Thu, 13 Feb 2003 15:37:06 +0000 (15:37 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/include/cygwin/types.h

index b23fa14..a7a54ae 100644 (file)
@@ -1,5 +1,9 @@
 2003-02-13  Christopher Faylor  <cgf@redhat.com>
 
+       * include/cygwin/types.h: Use correct ifdef guard for u_ definitions.
+
+2003-02-13  Christopher Faylor  <cgf@redhat.com>
+
        * environ.cc (environ_init): Use strechr.
 
 2003-02-13  Christopher Faylor  <cgf@redhat.com>
index c4ba3a6..793157e 100644 (file)
@@ -145,20 +145,20 @@ typedef __uint32_t uint32_t;
 typedef __uint64_t uint64_t;
 #endif
 
-#ifndef __uint8_t_defined
-#define __uint8_t_defined
+#ifndef __u_int8_t_defined
+#define __u_int8_t_defined
 typedef unsigned char u_int8_t;
 #endif
-#ifndef __uint16_t_defined
-#define __uint16_t_defined
+#ifndef __u_int16_t_defined
+#define __u_int16_t_defined
 typedef __uint16_t u_int16_t;
 #endif
-#ifndef __uint32_t_defined
-#define __uint32_t_defined
+#ifndef __u_int32_t_defined
+#define __u_int32_t_defined
 typedef __uint32_t u_int32_t;
 #endif
-#ifndef __uint64_t_defined
-#define __uint64_t_defined
+#ifndef __u_int64_t_defined
+#define __u_int64_t_defined
 typedef __uint64_t u_int64_t;
 #endif