From: Jim Meyering <jim@meyering.net>
Date: Wed, 29 Dec 1993 02:23:27 +0000 (+0000)
Subject: GNU shell utilities
X-Git-Tag: SHELLUTILS-1_9_2b
X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=4c734250007bbd56a66956f26aa30db94c159c1f;p=gnulib.git

GNU shell utilities
---

diff --git a/lib/strftime.c b/lib/strftime.c
index 071d5ddc27..6b210b480d 100644
--- 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
index 01dafc8fbe..d915840722 100644
--- a/lib/strtod.c
+++ b/lib/strtod.c
@@ -37,7 +37,6 @@ Cambridge, MA 02139, USA.  */
 #define DBL_MAX 1.7976931348623159e+308
 #define DBL_MIN 2.2250738585072010e-308
 #endif
-#endif
 
 #if STDC_HEADERS
 #include <stdlib.h>
@@ -48,6 +47,7 @@ extern int errno;
 #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.  */