diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-27 21:15:07 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-27 21:15:07 +0000 |
commit | d543acb6a7b5779dc3f569b762833cd9da27fd50 (patch) | |
tree | e0b64488f06758ca8e9dc8b83532c9f7fc2155aa /iperlsys.h | |
parent | 2b260de0f3727bc62519897f69d6f752c97d8502 (diff) | |
download | perl-d543acb6a7b5779dc3f569b762833cd9da27fd50.tar.gz |
patch up egcs-1.1.2-mingw32 build (builds a working miniperl, but not
perl; stdout/stderr redirects seem broken as well)
p4raw-id: //depot/perl@4474
Diffstat (limited to 'iperlsys.h')
-rw-r--r-- | iperlsys.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/iperlsys.h b/iperlsys.h index 3ecea4289d..92e5c28e18 100644 --- a/iperlsys.h +++ b/iperlsys.h @@ -74,6 +74,10 @@ extern void PerlIO_init (void); #endif +#ifndef Sighandler_t +typedef Signal_t (*Sighandler_t) (int); +#endif + #if defined(PERL_IMPLICIT_SYS) #ifndef PerlIO @@ -865,9 +869,6 @@ struct IPerlMemInfo #if defined(PERL_IMPLICIT_SYS) -#ifndef Sighandler_t -typedef Signal_t (*Sighandler_t) (int); -#endif #ifndef jmp_buf #include <setjmp.h> #endif |