From: Paul Eggert Date: Fri, 13 Jul 2007 18:01:12 +0000 (+0000) Subject: * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was X-Git-Tag: cvs-readonly~125 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=6c1b57f5d397d3d8c3212fc3f4c91faf64bf0654;hp=7a39483e4437689768808245226e17f1be0029e3;p=gnulib.git * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H. --- diff --git a/ChangeLog b/ChangeLog index 54cd53848..9d0e72d77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-07-13 Bruno Haible + + * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was + misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H. + 2007-07-13 Jim Meyering df: Don't fail for Tru64's "file-on-file mount". @@ -36,7 +41,7 @@ 2007-07-11 Karl Berry * MODULES.html.sh (func_module): use - sed -e '\|^'"${includefile}"'$|d' + sed -e '\|^'"${includefile}"'$|d' instead of /.../d, to avoid errors on $includefile's containing /. 2007-07-10 Sergey Poznyakoff diff --git a/lib/inttypes_.h b/lib/inttypes_.h index 38fdcc608..5257275fd 100644 --- a/lib/inttypes_.h +++ b/lib/inttypes_.h @@ -35,17 +35,7 @@ #define INTTYPES_H /* Include or the gnulib replacement. */ -#if ! defined __cplusplus || defined __STDC_LIMIT_MACROS -# include -#else -/* Macros like INT32_MIN are used below, so define __STDC_LIMIT_MACROS - while including ; this isn't namespace clean for C++, - unfortunately. */ -# define __STDC_LIMIT_MACROS -# include -# undef __STDC_LIMIT_MACROS -#endif - +#include /* Get CHAR_BIT. */ #include diff --git a/lib/stdint_.h b/lib/stdint_.h index 3299ac171..121118cff 100644 --- a/lib/stdint_.h +++ b/lib/stdint_.h @@ -66,9 +66,9 @@ /* In OpenBSD 3.8, includes , which defines int{8,16,32,64}_t, uint{8,16,32,64}_t and __BIT_TYPES_DEFINED__. also defines intptr_t and uintptr_t. */ -# define _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H +# define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H # include -# undef _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H +# undef _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H #elif @HAVE_SYS_INTTYPES_H@ /* Solaris 7 has the types except the *_fast*_t types, and the macros except for *_FAST*_*, INTPTR_MIN, PTRDIFF_MIN, PTRDIFF_MAX. */