From: Jarkko Hietaniemi Date: Tue, 11 Mar 2003 17:30:43 +0000 (+0000) Subject: Get rid of one Cygwin warning by introducing a prototype X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=88d107940a332197a7297ee2205aa2e32c212c76;p=p5sagit%2Fp5-mst-13.2.git Get rid of one Cygwin warning by introducing a prototype for the init_os_extras(). Since there is no header file in Perl specific to cygwin, use perl.h. p4raw-id: //depot/perl@18917 --- diff --git a/perl.h b/perl.h index a7b502e..fad16f5 100644 --- a/perl.h +++ b/perl.h @@ -2165,6 +2165,10 @@ typedef pthread_key_t perl_key; (PerlLIO_setmode(PerlIO_fileno(fp), mode) != -1 ? TRUE : FALSE) #endif +#ifdef __CYGWIN__ +void init_os_extras(void); +#endif + #ifdef UNION_ANY_DEFINITION UNION_ANY_DEFINITION; #else