Commit bcf11ab4 by Ozkan Sezer Committed by Kai Tietz

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
parent 27ed7478
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. */ ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment