mirror of git://gcc.gnu.org/git/gcc.git
choose-temp.c: Include unistd.h for mingw targets.
2009-09-22 Ozkan Sezer <sezeroz@gmail.com> * choose-temp.c: Include unistd.h for mingw targets. From-SVN: r152029
This commit is contained in:
parent
27ed7478c0
commit
bcf11ab47f
|
@ -1,3 +1,7 @@
|
||||||
|
2009-09-22 Ozkan Sezer <sezeroz@gmail.com>
|
||||||
|
|
||||||
|
* choose-temp.c: Include unistd.h for mingw targets.
|
||||||
|
|
||||||
2009-09-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
2009-09-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
* hashtab.c [HAVE_INTTYPES_H]: Include <inttypes.h>.
|
* hashtab.c [HAVE_INTTYPES_H]: Include <inttypes.h>.
|
||||||
|
|
|
@ -22,6 +22,10 @@ Boston, MA 02110-1301, USA. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stdio.h> /* May get P_tmpdir. */
|
#include <stdio.h> /* May get P_tmpdir. */
|
||||||
|
#include <sys/types.h>
|
||||||
|
#ifdef HAVE_UNISTD_H
|
||||||
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_STDLIB_H
|
#ifdef HAVE_STDLIB_H
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue