* setenv.c (setenv): Include stdlib.h for malloc prototypes
authorEzra Peisach <epeisach@mit.edu>
Mon, 23 Jul 2001 21:58:57 +0000 (21:58 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 23 Jul 2001 21:58:57 +0000 (21:58 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13626 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/bsd/ChangeLog
src/appl/bsd/setenv.c

index bd2356708da8267fbeb343e845114791d6b2558f..2c0d9846f39185508ffcbd8788aff3a3bdd89bb0 100644 (file)
@@ -1,3 +1,7 @@
+2001-07-23  Ezra Peisach  <epeisach@mit.edu>
+
+       * setenv.c (setenv): Include stdlib.h for malloc prototypes. 
+
 2001-07-14  Ken Raeburn  <raeburn@mit.edu>
 
        * v4rcp.c (kstream_create_rcp_from_fd, kstream_create_from_fd):
index 7316edb547af749f29f7a1d31187738686143eaa..d5d0110cee7428d0c22d36164b423ee8c5eb942b 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <sys/types.h>
 #include <stdio.h>
+#include <stdlib.h>
 
 #ifdef NEED_SETENV
 extern int setenv(char *, char *, int);
@@ -40,7 +41,6 @@ setenv(name, value, rewrite)
        static int alloced;                     /* if allocated space before */
        register char *C;
        int l_value, offset;
-       char *malloc(), *realloc();
 
        if (*value == '=')                      /* no `=' in value */
                ++value;