changeset 146:59f482e5924b

GNU shell utilities
author Jim Meyering <jim@meyering.net>
date Wed, 29 Dec 1993 02:23:27 +0000
parents be5d47496dc0
children 0adf96252683
files lib/strftime.c lib/strtod.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/strftime.c
+++ b/lib/strftime.c
@@ -36,7 +36,6 @@
    Numeric modifiers (a nonstandard extension):
    -	do not pad the field
    _	pad the field with spaces
-   %s   time in seconds since 00:00:00, Jan 1, 1970
 
    Time fields:
    %H	hour (00..23)
@@ -47,6 +46,7 @@
    %p	locale's AM or PM
    %r	time, 12-hour (hh:mm:ss [AP]M)
    %R	time, 24-hour (hh:mm)
+   %s	time in seconds since 00:00:00, Jan 1, 1970
    %S	second (00..61)
    %T	time, 24-hour (hh:mm:ss)
    %X	locale's time representation (%H:%M:%S)
--- a/lib/strtod.c
+++ b/lib/strtod.c
@@ -37,7 +37,6 @@
 #define DBL_MAX 1.7976931348623159e+308
 #define DBL_MIN 2.2250738585072010e-308
 #endif
-#endif
 
 #if STDC_HEADERS
 #include <stdlib.h>
@@ -48,6 +47,7 @@
 #ifndef HUGE_VAL
 #define HUGE_VAL HUGE
 #endif
+#endif
 
 /* Convert NPTR to a double.  If ENDPTR is not NULL, a pointer to the
    character after the last one used in the number is put in *ENDPTR.  */