diff options
author | Jan Dubois <jand@activestate.com> | 2010-04-21 18:55:01 -0700 |
---|---|---|
committer | Jan Dubois <jand@activestate.com> | 2010-04-21 21:57:32 -0700 |
commit | 6d6551238e4ff36bc7a56635f493568a7b3ec034 (patch) | |
tree | d4376eb2d9806ff13a613421298e34bd3cc7428e /win32 | |
parent | 50a4e5359779fd205d8586e68e94e2d99676a8ed (diff) | |
download | perl-6d6551238e4ff36bc7a56635f493568a7b3ec034.tar.gz |
Update PerlStdIOGets() signature
Brings it in line with the rest of the PerlStdIO* functions that
accept parameters in the same order as the corresponding PerlSIO_*
macros. See also commit ecc880cc.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/perlhost.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/perlhost.h b/win32/perlhost.h index 1cc7c1f500..651a367021 100644 --- a/win32/perlhost.h +++ b/win32/perlhost.h @@ -663,7 +663,7 @@ PerlStdIOGetPtr(struct IPerlStdIO* piPerl, FILE* pf) } char* -PerlStdIOGets(struct IPerlStdIO* piPerl, FILE* pf, char* s, int n) +PerlStdIOGets(struct IPerlStdIO* piPerl, char* s, int n, FILE* pf) { return win32_fgets(s, n, pf); } |