2009-09-22 Ozkan Sezer <sezeroz@gmail.com>

* choose-temp.c: Include unistd.h for mingw targets.
This commit is contained in:
Kai Tietz 2009-09-22 16:33:56 +00:00
parent 93cfa9cf1f
commit 074d710de7
2 changed files with 8 additions and 0 deletions

View File

@ -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>
* hashtab.c [HAVE_INTTYPES_H]: Include <inttypes.h>.

View File

@ -22,6 +22,10 @@ Boston, MA 02110-1301, USA. */
#endif
#include <stdio.h> /* May get P_tmpdir. */
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif