From: Gurusamy Sarathy Date: Thu, 17 Aug 2000 01:22:21 +0000 (+0000) Subject: move WNOHANG definition to where other such things are X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cc236deb7d22d66074bf369285822a8fae4bb842;p=p5sagit%2Fp5-mst-13.2.git move WNOHANG definition to where other such things are p4raw-id: //depot/perl@6670 --- diff --git a/win32/win32.h b/win32/win32.h index eb5ecd2..e2a0834 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -159,6 +159,11 @@ struct utsname { # define F_OK 0 #endif +/* for waitpid() */ +#ifndef WNOHANG +# define WNOHANG 1 +#endif + #define PERL_GET_CONTEXT_DEFINED /* Compiler-specific stuff. */ @@ -492,9 +497,5 @@ struct interp_intern { */ #include "win32iop.h" -#ifndef WNOHANG -# define WNOHANG 1 -#endif - #endif /* _INC_WIN32_PERL5 */