From: Bruno Haible Date: Fri, 6 Apr 2007 12:53:52 +0000 (+0000) Subject: Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=411cc9cd04f7826bbaed17074f19ef2d48938ca0;p=pspp Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64. --- diff --git a/ChangeLog b/ChangeLog index 09e94417bc..cd0e6e7e2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ * lib/time_.h [__DECC]: Likewise. * lib/wchar_.h [__DECC]: Likewise. * lib/wctype_.h [__DECC]: Likewise. + * lib/inttypes_.h [__DECC]: Likewise. Reported by Albert Chin in . diff --git a/lib/inttypes_.h b/lib/inttypes_.h index 3d3ead68aa..d2af35e677 100644 --- a/lib/inttypes_.h +++ b/lib/inttypes_.h @@ -21,7 +21,11 @@ which in turn includes this file. */ #if ! defined INTTYPES_H || defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H # if @HAVE_INTTYPES_H@ -# include @ABSOLUTE_INTTYPES_H@ +# ifdef __DECC +# include_next +# else +# include @ABSOLUTE_INTTYPES_H@ +# endif # endif #endif