From: Bruno Haible Date: Mon, 26 Jun 2006 17:49:53 +0000 (+0000) Subject: Fix typo. X-Git-Tag: cvs-readonly~2318 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=cbed45b7e90e9eb820924f529f3fa17747f996f9;p=gnulib.git Fix typo. --- diff --git a/lib/stdint_.h b/lib/stdint_.h index 09e7862eb..444a08256 100644 --- a/lib/stdint_.h +++ b/lib/stdint_.h @@ -79,7 +79,7 @@ a subset of the types and macros that are defined in . So we rely only on (included above). It means that in c89 mode, we shadow the contents of warning-spewing . */ -# if !(defined(__sgi) && @HAVE_INTTYPES_H@ && !defined(_c99)) +# if !(defined(__sgi) && @HAVE_INTTYPES_H@ && !defined(__c99)) # include @FULL_PATH_STDINT_H@ # endif #endif diff --git a/m4/stdint.m4 b/m4/stdint.m4 index bbc7e5741..e529ef3d2 100644 --- a/m4/stdint.m4 +++ b/m4/stdint.m4 @@ -114,7 +114,7 @@ typedef int array [2 * (POW63 != 0 && POW64 == 0) - 1]; #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H # include FULL_PATH_INTTYPES_H #endif -#if HAVE_STDINT_H && !(defined(__sgi) && HAVE_INTTYPES_H && !defined(_c99)) +#if HAVE_STDINT_H && !(defined(__sgi) && HAVE_INTTYPES_H && !defined(__c99)) # include FULL_PATH_STDINT_H #endif '