X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/3b050a92605e8ca176aeb951cf91db11faf40e0b..8db9069ca0bb3b524c2f656356fc526984285a58:/perlsfio.h diff --git a/perlsfio.h b/perlsfio.h index 0255876..2471753 100644 --- a/perlsfio.h +++ b/perlsfio.h @@ -1,4 +1,17 @@ +/* perlsfio.h + * + * Copyright (C) 1996, 1999, 2000, 2001, 2002, 2003, 2005, 2007, + * by Larry Wall and others + * + * You may distribute under the terms of either the GNU General Public + * License or the Artistic License, as specified in the README file. + * + */ + /* The next #ifdef should be redundant if Configure behaves ... */ +#ifndef FILE +#define FILE FILE +#endif #ifdef I_SFIO #include #endif @@ -37,20 +50,12 @@ extern int _stdprintf _ARG_((const char*, ...)); #define PerlIO_fileno(f) sffileno(f) #define PerlIO_clearerr(f) sfclrerr(f) #define PerlIO_flush(f) sfsync(f) -#if 0 -/* This breaks tests */ -#define PerlIO_tell(f) sfseek(f,0,1|SF_SHARE) -#else #define PerlIO_tell(f) sftell(f) -#endif #define PerlIO_seek(f,o,w) sfseek(f,o,w) #define PerlIO_rewind(f) (void) sfseek((f),0L,0) #define PerlIO_tmpfile() sftmp(0) - -#define PerlIO_importFILE(f,fl) ((void) Perl_croak(aTHX_ "Import from FILE * unimplemeted"), NULL) -#define PerlIO_exportFILE(f,fl) Perl_croak(aTHX_ "Export to FILE * unimplemeted") -#define PerlIO_findFILE(f) NULL -#define PerlIO_releaseFILE(p,f) Perl_croak(aTHX_ "Release of FILE * unimplemeted") +#define PerlIO_exportFILE(f,fl) Perl_croak(aTHX_ "Export to FILE * unimplemented") +#define PerlIO_releaseFILE(p,f) Perl_croak(aTHX_ "Release of FILE * unimplemented") #define PerlIO_setlinebuf(f) sfset(f,SF_LINE,1) @@ -68,4 +73,12 @@ extern int _stdprintf _ARG_((const char*, ...)); #define PerlIO_get_base(f) ((f)->data) #define PerlIO_get_bufsiz(f) ((f)->endr - (f)->data) - +/* + * Local variables: + * c-indentation-style: bsd + * c-basic-offset: 4 + * indent-tabs-mode: t + * End: + * + * ex: set ts=8 sts=4 sw=4 noet: + */