Get rid of one Cygwin warning by introducing a prototype
Jarkko Hietaniemi [Tue, 11 Mar 2003 17:30:43 +0000 (17:30 +0000)]
for the init_os_extras().  Since there is no header file
in Perl specific to cygwin, use perl.h.

p4raw-id: //depot/perl@18917

perl.h

diff --git a/perl.h b/perl.h
index a7b502e..fad16f5 100644 (file)
--- 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