X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=perlsdio.h;h=a1d2bec4b3a54757a25bbf7a2addb9fbe302f039;hb=9bedc915eb93569a1e9ab0b8265e8ffaa6002916;hp=fd990c06d8376eb97c357fcb3df7f6e385c8c065;hpb=766a733e849204725c27391cf2992d649af4aba6;p=p5sagit%2Fp5-mst-13.2.git diff --git a/perlsdio.h b/perlsdio.h index fd990c0..a1d2bec 100644 --- a/perlsdio.h +++ b/perlsdio.h @@ -1,4 +1,9 @@ #ifdef PERLIO_IS_STDIO + +#ifdef NETWARE + #include "nwstdio.h" +#else + /* * This file #define-s the PerlIO_xxx abstraction onto stdio functions. * Make this as close to original stdio as possible. @@ -15,6 +20,7 @@ #define PerlIO_stdoutf printf #define PerlIO_vprintf(f,fmt,a) vfprintf(f,fmt,a) #define PerlIO_write(f,buf,count) fwrite1(buf,1,count,f) +#define PerlIO_unread(f,buf,count) (-1) #define PerlIO_open fopen #define PerlIO_fdopen fdopen #define PerlIO_reopen freopen @@ -135,4 +141,5 @@ #define PerlIO_get_bufsiz(f) (abort(),0) #endif +#endif /* NETWARE */ #endif /* PERLIO_IS_STDIO */