diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-08-16 00:27:34 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-08-16 00:27:34 +0000 |
commit | 8971618ed9d829d1bde5e12f0500700acb21ec7d (patch) | |
tree | 52fc0c5c8194127de35b4e253a3c9f42a1b0f26b | |
parent | 428aff04f68cac81d1ac4aee891e4fd14a1e4a9e (diff) | |
download | perl-8971618ed9d829d1bde5e12f0500700acb21ec7d.tar.gz |
perl 5.003_03: x2p/str.c
Use Configure's FILE_filbuf macro instead of a raw _filbuf.
----------------
Version 5.003_02
-rw-r--r-- | x2p/str.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -317,7 +317,7 @@ register FILE *fp; FILE_cnt(fp) = cnt; /* deregisterize cnt and ptr */ FILE_ptr(fp) = ptr; - i = _filbuf(fp); /* get more characters */ + i = FILE_filbuf(fp); /* get more characters */ cnt = FILE_cnt(fp); ptr = FILE_ptr(fp); /* reregisterize cnt and ptr */ |