putenv.c: Include ansidecl.h to define `const'.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Fri, 28 May 1999 07:34:48 +0000 (07:34 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Fri, 28 May 1999 07:34:48 +0000 (07:34 +0000)
        * putenv.c: Include ansidecl.h to define `const'.
        * setenv.c: Likewise.

From-SVN: r27221

libiberty/ChangeLog
libiberty/putenv.c
libiberty/setenv.c

index 0c92dc1..cb77e8a 100644 (file)
@@ -1,3 +1,8 @@
+1999-05-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * putenv.c: Include ansidecl.h to define `const'.
+       * setenv.c: Likewise.
+
 Wed May 26 03:58:20 1999  "Melissa O'Neill" <oneill@cs.sfu.ca>
 
        * Makefile.in (CFILES): Add putenv.c and setenv.c.
index 1860676..9d56922 100644 (file)
@@ -24,6 +24,8 @@
 # include <config.h>
 #endif
 
+#include "ansidecl.h"
+
 #if HAVE_STDLIB_H
 # include <stdlib.h>
 #endif
@@ -55,7 +57,7 @@ putenv (string)
 
   if (name_end)
     {
-      char *name = alloca (name_end - string + 1);
+      char *name = (char *) alloca (name_end - string + 1);
       memcpy (name, string, name_end - string);
       name[name_end - string] = '\0';
       return setenv (name, name_end + 1, 1);
index 0ecc2ca..8a039d1 100644 (file)
@@ -20,6 +20,8 @@
 # include <config.h>
 #endif
 
+#include "ansidecl.h"
+
 #include <errno.h>
 #if !defined(errno) && !defined(HAVE_ERRNO_DECL)
 extern int errno;