diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-01 19:21:02 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-01 19:21:02 +0000 |
commit | 9e6b2b00f0190751b970ece3db7033405cb08ca5 (patch) | |
tree | e18c55b12253c77b6eedaa130c83d59345c1ba17 /perlio.h | |
parent | 891fc7f27629745a734e804217bbdaf86146df17 (diff) | |
download | perl-9e6b2b00f0190751b970ece3db7033405cb08ca5.tar.gz |
[asperl] add AS patch#20 (exposes more global constants)
p4raw-id: //depot/asperl@908
Diffstat (limited to 'perlio.h')
-rw-r--r-- | perlio.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -45,6 +45,7 @@ extern void PerlIO_init _((void)); #define PerlIO_putc(f,c) piStdIO->Putc((f),(c), ErrorNo()) #define PerlIO_puts(f,s) piStdIO->Puts((f),(s), ErrorNo()) #define PerlIO_flush(f) piStdIO->Flush((f), ErrorNo()) +#define PerlIO_gets(s, n, fp) piStdIO->Gets((fp), s, n, ErrorNo()) #define PerlIO_ungetc(f,c) piStdIO->Ungetc((f),(c), ErrorNo()) #define PerlIO_fileno(f) piStdIO->Fileno((f), ErrorNo()) #define PerlIO_fdopen(f, s) piStdIO->Fdopen((f),(s), ErrorNo()) |