X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=perlsdio.h;h=25d6b36addc62b2c715cdaaa1db8410e626b9e74;hb=1db366cc74404c47243e1d86efa59c6559db818e;hp=480b024db1aef8f408bd23e244d0bdeb90df9135;hpb=bd61b36601703dd438f87762f0c4d23a6aeb375d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/perlsdio.h b/perlsdio.h index 480b024..25d6b36 100644 --- a/perlsdio.h +++ b/perlsdio.h @@ -1,7 +1,7 @@ /* perlsdio.h * - * Copyright (C) 1996, 1997, 1998, 1999, - * 2000, 2001, 2002, by Larry Wall and others + * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, + * 2002, 2003, 2006, 2007, 2008 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. @@ -34,8 +34,8 @@ #define PerlIO_fdopen PerlSIO_fdopen #define PerlIO_reopen PerlSIO_freopen #define PerlIO_close(f) PerlSIO_fclose(f) -#define PerlIO_puts(f,s) PerlSIO_fputs(f,s) -#define PerlIO_putc(f,c) PerlSIO_fputc(f,c) +#define PerlIO_puts(f,s) PerlSIO_fputs(s,f) +#define PerlIO_putc(f,c) PerlSIO_fputc(c,f) #if defined(VMS) # if defined(__DECC) /* Unusual definition of ungetc() here to accomodate fast_sv_gets()' @@ -152,3 +152,13 @@ #endif /* NETWARE */ #endif /* PERLIO_IS_STDIO */ + +/* + * Local variables: + * c-indentation-style: bsd + * c-basic-offset: 4 + * indent-tabs-mode: t + * End: + * + * ex: set ts=8 sts=4 sw=4 noet: + */