Commit 7b004ab5 by Doug Evans

protoize.c: Update test for win32 (&& ! cygwin32).

	* protoize.c: Update test for win32 (&& ! cygwin32).
	(kill): Delete decl.

From-SVN: r12650
parent 876ac40d
...@@ -65,7 +65,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -65,7 +65,7 @@ Boston, MA 02111-1307, USA. */
#include <errno.h> #include <errno.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#ifndef _WIN32 #if ! defined (_WIN32) || defined (__CYGWIN32__)
#if defined(POSIX) || defined(CONCURRENT) #if defined(POSIX) || defined(CONCURRENT)
#include <dirent.h> #include <dirent.h>
#else #else
...@@ -181,9 +181,6 @@ typedef char * const_pointer_type; ...@@ -181,9 +181,6 @@ typedef char * const_pointer_type;
typedef void voidfn (); typedef void voidfn ();
extern VOLATILE voidfn abort; extern VOLATILE voidfn abort;
#endif #endif
#ifndef _WIN32
extern int kill ();
#endif
extern int creat (); extern int creat ();
#if 0 /* These conflict with stdio.h on some systems. */ #if 0 /* These conflict with stdio.h on some systems. */
extern int fprintf (FILE *, const char *, ...); extern int fprintf (FILE *, const char *, ...);
......
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