diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-01-06 21:47:52 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-01-06 21:47:52 +0000 |
commit | f7e7eb72c805f1b630a3d1a32ed33c0f6da60bea (patch) | |
tree | 63645881dcfc03711dec389545e2c09db571da1c /perlio.h | |
parent | ba2475127660598ffe45c99cc6ca9e93a5ca847c (diff) | |
download | perl-f7e7eb72c805f1b630a3d1a32ed33c0f6da60bea.tar.gz |
FILE * in XS code for PerlIO world:
- make PERLIO_NOT_STDIO 0 (co-existance) default for non PERL_CORE case.
- Add FILE * T_STDIO typemap.
- Finish PerlIO_findFILE() and PerlIO_extprtFILE()
p4raw-id: //depot/perlio@8356
Diffstat (limited to 'perlio.h')
-rw-r--r-- | perlio.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -106,6 +106,10 @@ extern void PerlIO_pop (PerlIO *f); #ifndef PERLIO_NOT_STDIO #define PERLIO_NOT_STDIO 1 #endif +#else +#ifndef PERLIO_NOT_STDIO +#define PERLIO_NOT_STDIO 0 +#endif #endif #ifdef PERLIO_NOT_STDIO |