From 411cc9cd04f7826bbaed17074f19ef2d48938ca0 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 6 Apr 2007 12:53:52 +0000 Subject: [PATCH] Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64. --- ChangeLog | 1 + lib/inttypes_.h | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 09e94417b..cd0e6e7e2 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 3d3ead68a..d2af35e67 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 -- 2.11.0