From: drepper Date: Mon, 4 Nov 2002 09:35:08 +0000 (+0000) Subject: Use __STDC_VERSION__ not __STDC_VERSION. X-Git-Tag: initial~276 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=503c16767f5c6ee25ad8ec7a2592600546506db0 Use __STDC_VERSION__ not __STDC_VERSION. --- diff --git a/include/features.h b/include/features.h index 366fcc5c6d..5e39b7fcc9 100644 --- a/include/features.h +++ b/include/features.h @@ -281,7 +281,7 @@ #if defined __GNUC__ \ || (defined __PGI && defined __i386__ ) \ || (defined __INTEL_COMPILER && (defined __i386__ || defined __ia64__)) \ - || (defined __STDC_VERSION && __STDC_VERSION >= 199901L) + || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) # define __GLIBC_HAVE_LONG_LONG 1 #endif