]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
GNU shell utilities
authorJim Meyering <jim@meyering.net>
Tue, 9 Nov 1993 13:01:33 +0000 (13:01 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 9 Nov 1993 13:01:33 +0000 (13:01 +0000)
lib/getdate.y
lib/putenv.c

index df1a08a98dbdfd9c3c92f033e2dc81ef2a3914e4..1d5690423893749dc1092e8bda6f6526d0ba7afe 100644 (file)
@@ -97,7 +97,7 @@ void *alloca ();
 #undef timezone /* needed for sgi */
 #endif
 
-#if defined(HAVE_SYS_TIMEB_H) || (!defined(USG) && defined(HAVE_FTIME))
+#if defined(HAVE_SYS_TIMEB_H)
 #include <sys/timeb.h>
 #else
 /*
index b9f49128435b358dfa9dd18cf074dd46cd7b42f1..47f7256e581ef1f012c256e29824ce87bcd05259 100644 (file)
@@ -106,7 +106,8 @@ putenv (string)
       char **new_environ = (char **) malloc ((size + 2) * sizeof (char *));
       if (new_environ == NULL)
        return -1;
-      (void) bcopy ((char *) environ, (char *) new_environ, size * sizeof (char *));
+      (void) bcopy ((char *) environ, (char *) new_environ,
+                   size * sizeof (char *));
       new_environ[size] = (char *) string;
       new_environ[size + 1] = NULL;
       if (last_environ != NULL)