From 9e189a7a71cd7cd8943ba7a889d4a450e0438333 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sun, 18 Aug 1996 01:43:58 +0000 Subject: [PATCH] choose-temp.c: Delete !defined(_WIN32) condition when including sys/file.h (NO_SYS_FILE_H is... * choose-temp.c: Delete !defined(_WIN32) condition when including sys/file.h (NO_SYS_FILE_H is still used). From-SVN: r12657 --- gcc/choose-temp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/choose-temp.c b/gcc/choose-temp.c index b687729e2f6..0383832a3b6 100644 --- a/gcc/choose-temp.c +++ b/gcc/choose-temp.c @@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA. */ /* This file lives in at least two places: libiberty and gcc. Don't change one without the other. */ -#if ! defined (_WIN32) && ! defined (NO_SYS_FILE_H) +#ifndef NO_SYS_FILE_H #include #include /* May get R_OK, etc. on some systems. */ #endif -- 2.30.2