diff options
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index 7cc0b0a5995..4c77c56b201 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -65,7 +65,7 @@ Boston, MA 02111-1307, USA. */ #include <errno.h> #include <sys/types.h> #include <sys/stat.h> -#ifndef _WIN32 +#if ! defined (_WIN32) || defined (__CYGWIN32__) #if defined(POSIX) || defined(CONCURRENT) #include <dirent.h> #else @@ -181,9 +181,6 @@ typedef char * const_pointer_type; typedef void voidfn (); extern VOLATILE voidfn abort; #endif -#ifndef _WIN32 -extern int kill (); -#endif extern int creat (); #if 0 /* These conflict with stdio.h on some systems. */ extern int fprintf (FILE *, const char *, ...); |