summaryrefslogtreecommitdiff
path: root/libiberty/choose-temp.c
diff options
context:
space:
mode:
authorOzkan Sezer <sezeroz@gmail.com>2009-09-22 16:34:12 +0000
committerKai Tietz <ktietz@gcc.gnu.org>2009-09-22 18:34:12 +0200
commitbcf11ab47fffbb787dcf7140f7e30e92f7751d7a (patch)
tree79c2eed0e0f83c93cb1e87d1e59c12e450e87d03 /libiberty/choose-temp.c
parent27ed7478c010c7afaa79d06dcda74048711bc890 (diff)
downloadgcc-bcf11ab47fffbb787dcf7140f7e30e92f7751d7a.tar.gz
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
Diffstat (limited to 'libiberty/choose-temp.c')
-rw-r--r--libiberty/choose-temp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libiberty/choose-temp.c b/libiberty/choose-temp.c
index b1c2e5b66ba..0a454cfa7ca 100644
--- a/libiberty/choose-temp.c
+++ b/libiberty/choose-temp.c
@@ -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