projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f47e8e
)
missing PerlIO_reopen() (suggested by sam@daemoninc.com)
author
Gurusamy Sarathy
<gsar@cpan.org>
Wed, 7 Jul 1999 17:47:30 +0000
(17:47 +0000)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Wed, 7 Jul 1999 17:47:30 +0000
(17:47 +0000)
p4raw-id: //depot/perl@3651
perlsfio.h
patch
|
blob
|
history
diff --git
a/perlsfio.h
b/perlsfio.h
index
d6731e4
..
c4ed5c7
100644
(file)
--- a/
perlsfio.h
+++ b/
perlsfio.h
@@
-18,6
+18,7
@@
extern int _stdprintf _ARG_((const char*, ...));
#define PerlIO_write(f,buf,count) sfwrite(f,buf,count)
#define PerlIO_open(path,mode) sfopen(NULL,path,mode)
#define PerlIO_fdopen(fd,mode) _stdopen(fd,mode)
+#define PerlIO_reopen(path,mode,f) sfopen(f,path,mode)
#define PerlIO_close(f) sfclose(f)
#define PerlIO_puts(f,s) sfputr(f,s,-1)
#define PerlIO_putc(f,c) sfputc(f,c)