diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-08-18 01:29:32 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-08-18 01:29:32 +0000 |
commit | 087a772dc5c59cb74433c654487d5216e723a976 (patch) | |
tree | 2d436d4e5e760bdba1a568767ea916a5ebddd577 /gcc/protoize.c | |
parent | 6733cbdac9aa793436c3552d43d5398411c00651 (diff) | |
download | gcc-087a772dc5c59cb74433c654487d5216e723a976.tar.gz |
* protoize.c: Update test for win32 (&& ! cygwin32).
(kill): Delete decl.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12650 138bc75d-0d04-0410-961f-82ee72b054a4
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 *, ...); |