X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=fakesdio.h;h=8ef89e9ca5dd30d8a07c7b62436dc33e1a6af06f;hb=69e2f04480336aed2ad842f2b92ce366bcd2e9e1;hp=e07fd606178ab5e6556b32ba312f24ea36db13e6;hpb=cf677677a1a817dcdfc679372e08232bc54af9cb;p=p5sagit%2Fp5-mst-13.2.git diff --git a/fakesdio.h b/fakesdio.h index e07fd60..8ef89e9 100644 --- a/fakesdio.h +++ b/fakesdio.h @@ -1,3 +1,12 @@ +/* fakestdio.h + * + * Copyright (c) 2000-2002, Larry Wall + * + * You may distribute under the terms of either the GNU General Public + * License or the Artistic License, as specified in the README file. + * + */ + /* * This is "source level" stdio compatibility mode. * We try and #define stdio functions in terms of PerlIO. @@ -15,6 +24,7 @@ #undef fgetpos #undef fgets #undef fileno +#undef flockfile #undef fopen #undef fprintf #undef fputc @@ -25,6 +35,8 @@ #undef fseek #undef fsetpos #undef ftell +#undef ftrylockfile +#undef funlockfile #undef fwrite #undef getc #undef getc_unlocked @@ -68,9 +80,7 @@ #define fread(b,s,c,f) _CANNOT fread #define fwrite(b,s,c,f) _CANNOT fwrite #endif -#define fgetpos(f,p) PerlIO_getpos(f,p) #define fseek(f,o,w) PerlIO_seek(f,o,w) -#define fsetpos(f,p) PerlIO_setpos(f,p) #define ftell(f) PerlIO_tell(f) #define rewind(f) PerlIO_rewind(f) #define clearerr(f) PerlIO_clearerr(f) @@ -81,6 +91,9 @@ #define popen(c,m) my_popen(c,m) #define pclose(f) my_pclose(f) +#define fsetpos(f,p) _CANNOT _fsetpos_ +#define fgetpos(f,p) _CANNOT _fgetpos_ + #define __filbuf(f) _CANNOT __filbuf_ #define _filbuf(f) _CANNOT _filbuf_ #define __flsbuf(c,f) _CANNOT __flsbuf_