projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
83f7804
)
Re: 5.003_05 is available.
Hunter Kelly [Thu, 12 Sep 1996 22:58:00 +0000 (22:58 +0000)]
Fix PerlIO_reopen parameters.
perlio.c
patch
|
blob
|
blame
|
history
diff --git
a/perlio.c
b/perlio.c
index
b9a3a22
..
55d5f17
100644
(file)
--- a/
perlio.c
+++ b/
perlio.c
@@
-274,11
+274,10
@@
const char *mode;
#undef PerlIO_reopen
PerlIO *
-PerlIO_reopen(fd,mode)
-char *name;
-char *mode;
-PerlIO *f;
+PerlIO_reopen(name, mode, f)
+const char *name;
const char *mode;
+PerlIO *f;
{
return freopen(name,mode,f);
}