From: albert <> Date: Fri, 3 Jan 2003 16:55:40 +0000 (+0000) Subject: egcs-2.91.66 seems to lack __restrict X-Git-Tag: v3.3.0~274 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c334155f567bc64c72f37b0c438b6b80832582b3;p=procps-ng egcs-2.91.66 seems to lack __restrict --- diff --git a/proc/procps.h b/proc/procps.h index 8fbaa503..03c2a562 100644 --- a/proc/procps.h +++ b/proc/procps.h @@ -10,7 +10,7 @@ #endif #if !defined(restrict) && __STDC_VERSION__ < 199901 -#if __GNUC__ > 2 || __GNUC_MINOR__ >= 91 // maybe 92 or 95 ? +#if __GNUC__ > 2 || __GNUC_MINOR__ >= 92 // maybe 92 or 95 ? #define restrict __restrict__ #else #warning No restrict keyword?