* getcwd.c: Include string.h, stdlib.h for prototypes
authorJeff Law <law@redhat.com>
Wed, 26 Jul 2000 23:30:27 +0000 (23:30 +0000)
committerJeff Law <law@redhat.com>
Wed, 26 Jul 2000 23:30:27 +0000 (23:30 +0000)
libiberty/ChangeLog
libiberty/getcwd.c

index 5ac8490..9acd322 100644 (file)
@@ -1,6 +1,8 @@
 2000-07-27  RodneyBrown  <RodneyBrown@pmsc.com>
             Jeff Law <law@cygnus.com>
 
+        * getcwd.c: Include string.h, stdlib.h for prototypes
+
        * Makefile.in (rename.o, waitpid.o): Depend on config.h
        * rename.c: include config.h, unistd.h
        * waitpid.c: include config.h, sys/wait.h
index 47b1c1e..3445563 100644 (file)
@@ -29,6 +29,12 @@ BUGS
 #include <sys/param.h>
 #endif
 #include <errno.h>
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
 
 extern char *getwd ();
 extern int errno;