mirror of git://gcc.gnu.org/git/gcc.git
setenv.c (sys/types.h, stdio.h): Files included.
* setenv.c (sys/types.h, stdio.h): Files included. * xstrdup.c (sys/types.h): File included. For the gcc-2.95 branch only. Not to be migrated into the mainline tree because it is incomplete. From-SVN: r27736
This commit is contained in:
parent
2dc130a72e
commit
4ef877d9fb
|
@ -1,3 +1,8 @@
|
||||||
|
Thu Jun 24 22:26:45 1999 Philippe De Muyter <phdm@macqel.be>
|
||||||
|
|
||||||
|
* setenv.c (sys/types.h, stdio.h): Files included.
|
||||||
|
* xstrdup.c (sys/types.h): File included.
|
||||||
|
|
||||||
1999-06-21 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
1999-06-21 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||||
|
|
||||||
* configure.in (checkfuncs): Add gettimeofday.
|
* configure.in (checkfuncs): Add gettimeofday.
|
||||||
|
|
|
@ -30,6 +30,9 @@ extern int errno;
|
||||||
|
|
||||||
#if HAVE_STDLIB_H
|
#if HAVE_STDLIB_H
|
||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
|
#else
|
||||||
|
#include <sys/types.h> /* For `size_t' */
|
||||||
|
#include <stdio.h> /* For `NULL' */
|
||||||
#endif
|
#endif
|
||||||
#if HAVE_STRING_H
|
#if HAVE_STRING_H
|
||||||
# include <string.h>
|
# include <string.h>
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
#include <sys/types.h> /* For `size_t' */
|
||||||
#ifdef HAVE_STRING_H
|
#ifdef HAVE_STRING_H
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue