summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2006-12-10 01:54:50 +0000
committerUlrich Drepper <drepper@redhat.com>2006-12-10 01:54:50 +0000
commitf85fb97b9bdd59c6d7b105e81b72b7b69a9647e1 (patch)
tree47fd1eecc4e2a62ea3c148d0ef42f975b7433739
parent405698e946dbed472491f85867eb511eb080e05a (diff)
* include/features.h: Fix comment about default value for _POSIX_C_SOURCE.
-rw-r--r--ChangeLog4
-rw-r--r--include/features.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e3e2f977d4..9a15349887 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2006-12-09 Ulrich Drepper <drepper@redhat.com>
+ [BZ #3632]
+ * include/features.h: Fix comment about default value for
+ _POSIX_C_SOURCE.
+
[BZ #3664]
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
empty parsed strings.
diff --git a/include/features.h b/include/features.h
index 1676ad3e58..ad9bbc70ee 100644
--- a/include/features.h
+++ b/include/features.h
@@ -49,7 +49,7 @@
The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__.
If none of these are defined, the default is to have _SVID_SOURCE,
_BSD_SOURCE, and _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
- 199506L. If more than one of these are defined, they accumulate.
+ 200112L. If more than one of these are defined, they accumulate.
For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE
together give you ISO C, 1003.1, and 1003.2, but nothing else.