about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-11-04 09:36:53 +0000
committerUlrich Drepper <drepper@redhat.com>2002-11-04 09:36:53 +0000
commit125183201f9b764e12f87aee88889f6db1e119ab (patch)
treeaf92c1c5e293c19138cd659d436df269a3d2dcd7 /include
parent8e96ae1a08f419829221ab7e31291606754f0a69 (diff)
downloadglibc-125183201f9b764e12f87aee88889f6db1e119ab.tar.gz
glibc-125183201f9b764e12f87aee88889f6db1e119ab.tar.xz
glibc-125183201f9b764e12f87aee88889f6db1e119ab.zip
Update.
	* include/features.h: Use __STDC_VERSION__ not __STDC_VERSION.
	Reported by Miloslav Trmac <mitr@volny.cz> [PR libc/4766].
Diffstat (limited to 'include')
-rw-r--r--include/features.h2
1 files changed, 1 insertions, 1 deletions
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