From: Paul Eggert Date: Tue, 27 Aug 2019 07:37:08 +0000 (-0700) Subject: Pacify Oracle Studio 12.6 X-Git-Tag: 4.2.91~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73e11a50243c91d9228dc23d3377e031e78a3a96;p=thirdparty%2Fmake.git Pacify Oracle Studio 12.6 * src/arscan.c [VMS]: Use ‘#if !defined LBR$_HDRTRUNC’ instead of ‘#ifndef LBR$_HDRTRUNC’ to pacify Oracle Studio 12.6, which looks inside unused #if branches for preprocessor syntax errors. Without this patch it complains ‘"src/arscan.c", line 43: warning: tokens ignored at end of directive line’. --- diff --git a/src/arscan.c b/src/arscan.c index fb626412..9a0a7a0c 100644 --- a/src/arscan.c +++ b/src/arscan.c @@ -40,7 +40,7 @@ this program. If not, see . */ #include /* This symbol should be present in lbrdef.h. */ -#ifndef LBR$_HDRTRUNC +#if !defined LBR$_HDRTRUNC #pragma extern_model save #pragma extern_model globalvalue extern unsigned int LBR$_HDRTRUNC;