diff options
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 { |