diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-10 04:41:38 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-10 04:41:38 +0000 |
commit | f2d1dd141bc4d06cf30d6f5e665c636732dab1a4 (patch) | |
tree | 78e8b9415185329d5689a8dbb8bfaa4aa5ba97cf /bytecode.pl | |
parent | 5e5cb0584cf33fae1ba6257c1998e3785ade5f7a (diff) | |
download | perl-f2d1dd141bc4d06cf30d6f5e665c636732dab1a4.tar.gz |
win32 build fixes
p4raw-id: //depot/perl@3525
Diffstat (limited to 'bytecode.pl')
-rw-r--r-- | bytecode.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bytecode.pl b/bytecode.pl index c9bb491009..955db20ea3 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -188,9 +188,9 @@ open(BYTERUN_H, ">ext/ByteLoader/byterun.h") or die "ext/ByteLoader/byterun.h: $ print BYTERUN_H $c_header, <<'EOT'; struct bytestream { void *data; - int (*fgetc)(void *); - int (*fread)(char *, size_t, size_t, void *); - void (*freadpv)(U32, void *, XPV *); + int (*pfgetc)(void *); + int (*pfread)(char *, size_t, size_t, void *); + void (*pfreadpv)(U32, void *, XPV *); }; enum { |