# HG changeset patch # User Bruno Haible # Date 1151344193 0 # Node ID 6a5c1b91a7eb4657d786a5ec9657a134d7bcfb61 # Parent 1cc0079e942ef6cbca5e61495329cfaef95577f7 Fix typo. diff --git a/lib/stdint_.h b/lib/stdint_.h --- 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 --- a/m4/stdint.m4 +++ b/m4/stdint.m4 @@ -114,7 +114,7 @@ #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 '