diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-18 08:36:29 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-18 08:36:29 +0000 |
commit | 9879c2ce0eac18e10edc2fc75144a165a782538a (patch) | |
tree | a351f69075f978d7d6b755e4eac5792b9cb13fb1 /libiberty | |
parent | 0426edcdc1900379aa1781f7562ddedf27f61ffe (diff) | |
download | gcc-9879c2ce0eac18e10edc2fc75144a165a782538a.tar.gz |
* setenv.c (sys/types.h, stdio.h): Include those files unconditionaly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30067 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/setenv.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 167e4630318..57d73ce9f86 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +Mon Oct 18 02:30:47 1999 Philippe De Muyter <phdm@macqel.be> + + * setenv.c (sys/types.h, stdio.h): Include those files unconditionaly. + Fri Oct 15 01:47:51 1999 Vladimir Makarov <vmakarov@loony.cygnus.com> * Makefile.in (CFILES): Add hashtab.c diff --git a/libiberty/setenv.c b/libiberty/setenv.c index 8a039d18fa8..eec13006c22 100644 --- a/libiberty/setenv.c +++ b/libiberty/setenv.c @@ -21,6 +21,8 @@ #endif #include "ansidecl.h" +#include <sys/types.h> /* For `size_t' */ +#include <stdio.h> /* For `NULL' */ #include <errno.h> #if !defined(errno) && !defined(HAVE_ERRNO_DECL) |