Rename NEED_SIGNED_INT_TYPES macro.
authorBruno Haible <bruno@clisp.org>
Mon, 23 May 2005 10:22:11 +0000 (10:22 +0000)
committerBruno Haible <bruno@clisp.org>
Mon, 23 May 2005 10:22:11 +0000 (10:22 +0000)
lib/ChangeLog
lib/stdint_.h

index 845e5e3386ddcce23da97eea721a8c1d0147a656..1b759085f8621a9fbe42c0902fe6d6835c68f6c0 100644 (file)
@@ -1,5 +1,8 @@
 2005-05-22  Bruno Haible  <bruno@clisp.org>
 
+       * stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
+       NEED_SIGNED_INT_TYPES.
+
        * stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
        HAVE_SYSTEM_INTTYPES.
 
index d9c4a0f794752df215a2b66c0b249eb0c4e0fdc8..16afe08031efb5e75eb8861db949a9838ecdfd3d 100644 (file)
@@ -49,7 +49,7 @@
 # define _STDINT_H_HAVE_SYSTEM_INTTYPES
 #endif
 #if !(defined(UNIX_CYGWIN32) && defined(__BIT_TYPES_DEFINED__))
-# define NEED_SIGNED_INT_TYPES
+# define _STDINT_H_NEED_SIGNED_INT_TYPES
 #endif
 
 #if !defined(_STDINT_H_HAVE_SYSTEM_INTTYPES)
 
 #if !defined(__FreeBSD__)
 
-#ifdef NEED_SIGNED_INT_TYPES
+#ifdef _STDINT_H_NEED_SIGNED_INT_TYPES
 typedef signed char    int8_t;
 #endif
 typedef unsigned char  uint8_t;
 
-#ifdef NEED_SIGNED_INT_TYPES
+#ifdef _STDINT_H_NEED_SIGNED_INT_TYPES
 typedef short          int16_t;
 #endif
 typedef unsigned short uint16_t;
 
-#ifdef NEED_SIGNED_INT_TYPES
+#ifdef _STDINT_H_NEED_SIGNED_INT_TYPES
 typedef int            int32_t;
 #endif
 typedef unsigned int   uint32_t;
 
 #if @HAVE_LONG_64BIT@
-#ifdef NEED_SIGNED_INT_TYPES
+#ifdef _STDINT_H_NEED_SIGNED_INT_TYPES
 typedef long           int64_t;
 #endif
 typedef unsigned long  uint64_t;
 #elif @HAVE_LONG_LONG_64BIT@
-#ifdef NEED_SIGNED_INT_TYPES
+#ifdef _STDINT_H_NEED_SIGNED_INT_TYPES
 typedef long long          int64_t;
 #endif
 typedef unsigned long long uint64_t;