summaryrefslogtreecommitdiff
path: root/perlio.h
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2001-01-06 21:47:52 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2001-01-06 21:47:52 +0000
commitf7e7eb72c805f1b630a3d1a32ed33c0f6da60bea (patch)
tree63645881dcfc03711dec389545e2c09db571da1c /perlio.h
parentba2475127660598ffe45c99cc6ca9e93a5ca847c (diff)
downloadperl-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.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/perlio.h b/perlio.h
index a0672beb18..b144b2494c 100644
--- a/perlio.h
+++ b/perlio.h
@@ -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