# HG changeset patch # User Jim Meyering # Date 757131807 0 # Node ID 59f482e5924bd34f3396b284e099a69315e4a53e # Parent be5d47496dc07eebc813460509cee1d8d641dbc2 GNU shell utilities diff --git a/lib/strftime.c b/lib/strftime.c --- 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) diff --git a/lib/strtod.c b/lib/strtod.c --- 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 @@ -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. */