summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-02-17 16:50:27 +0000
committerJim Meyering <jim@meyering.net>2001-02-17 16:50:27 +0000
commit0d99837faa71e14e22c552ddb3f6b54259616a6f (patch)
tree6725af489d6b1fa17a0228ad1521a231ab78df4b
parent41192272ef9de8840e6d7ad99105d7836d1a9565 (diff)
downloadgnulib-0d99837faa71e14e22c552ddb3f6b54259616a6f.tar.gz
update comments from libc
-rw-r--r--lib/strftime.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/strftime.c b/lib/strftime.c
index c6d0dedfa4..5c44234fc3 100644
--- a/lib/strftime.c
+++ b/lib/strftime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991-1999, 2000, 2001 Free Software Foundation, Inc.
NOTE: The canonical source of this file is maintained with the GNU C Library.
Bugs can be reported to bug-glibc@prep.ai.mit.edu.
@@ -1068,7 +1068,7 @@ my_strftime (s, maxsize, format, tp ut_argument)
goto underlying_strftime;
#endif
- case L_('R'): /* GNU extension. */
+ case L_('R'): /* ISO C99 extension. */
subfmt = L_("%H:%M");
goto subformat;
@@ -1161,8 +1161,8 @@ my_strftime (s, maxsize, format, tp ut_argument)
DO_NUMBER (2, (tp->tm_yday - tp->tm_wday + 7) / 7);
case L_('V'):
- case L_('g'): /* GNU extension. */
- case L_('G'): /* GNU extension. */
+ case L_('g'): /* ISO C99 extension. */
+ case L_('G'): /* ISO C99 extension. */
if (modifier == L_('E'))
goto bad_format;
{
@@ -1286,7 +1286,7 @@ my_strftime (s, maxsize, format, tp ut_argument)
#endif
break;
- case L_('z'): /* GNU extension. */
+ case L_('z'): /* ISO C99 extension. */
if (tp->tm_isdst < 0)
break;