]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
[BZ #3632]
authorJakub Jelinek <jakub@redhat.com>
Fri, 12 Jan 2007 17:16:43 +0000 (17:16 +0000)
committerJakub Jelinek <jakub@redhat.com>
Fri, 12 Jan 2007 17:16:43 +0000 (17:16 +0000)
* include/features.h: Fix comment about default value for
_POSIX_C_SOURCE.

ChangeLog
include/features.h

index 08358ebd05a0062117eb428cbec43ccf2eaaf73e..51ad7245eb42b908c460c6c4aa3853ada02d4d43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-12-09  Ulrich Drepper  <drepper@redhat.com>
+
+       [BZ #3632]
+       * include/features.h: Fix comment about default value for
+       _POSIX_C_SOURCE.
+
 2006-12-09  Jakub Jelinek  <jakub@redhat.com>
 
        * misc/getusershell.c (initshells): Check for integer overflows.
index 1676ad3e5855c932665ec696bab84f936a8690f8..ad9bbc70eec6df420fb2ef75e5258a1047d2e3b5 100644 (file)
@@ -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.