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. */
#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 *, ...);
......
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