From: Bruno Haible Date: Mon, 23 May 2005 10:22:11 +0000 (+0000) Subject: Rename NEED_SIGNED_INT_TYPES macro. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfa8e8cf417b12aef7ba47a9b9be5b27c0db442b;p=pspp Rename NEED_SIGNED_INT_TYPES macro. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 845e5e3386..1b759085f8 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,5 +1,8 @@ 2005-05-22 Bruno Haible + * 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. diff --git a/lib/stdint_.h b/lib/stdint_.h index d9c4a0f794..16afe08031 100644 --- a/lib/stdint_.h +++ b/lib/stdint_.h @@ -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) @@ -58,28 +58,28 @@ #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;