diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-12-22 19:58:53 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-12-22 19:58:53 +0000 |
commit | 582ed04c91818c6c9bf5b51c84f67b7c565925a7 (patch) | |
tree | 957298fee7046b156ada00b62ceca8a7c5cc982e /proto.h | |
parent | e87a358ade5a3dd9a8b192569e18211d76c93743 (diff) | |
download | perl-582ed04c91818c6c9bf5b51c84f67b7c565925a7.tar.gz |
Put PerlIO stuff inside EXTERN C
p4raw-id: //depot/perlio@13853
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1332,7 +1332,6 @@ PERL_CALLCONV char* Perl_sv_pvn_force_flags(pTHX_ SV* sv, STRLEN* lp, I32 flags) PERL_CALLCONV char* Perl_sv_2pv_flags(pTHX_ SV* sv, STRLEN* lp, I32 flags); PERL_CALLCONV char* Perl_my_atof2(pTHX_ const char *s, NV* value); -END_EXTERN_C #if defined(USE_PERLIO) && !defined(USE_SFIO) PERL_CALLCONV int Perl_PerlIO_close(pTHX_ PerlIO *); @@ -1360,3 +1359,6 @@ PERL_CALLCONV PerlIO * Perl_PerlIO_stdin(pTHX); PERL_CALLCONV PerlIO * Perl_PerlIO_stdout(pTHX); PERL_CALLCONV PerlIO * Perl_PerlIO_stderr(pTHX); #endif /* PERLIO_LAYERS */ + +END_EXTERN_C + |