diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-02-27 18:35:27 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-02-27 18:35:27 +0000 |
commit | 47358472068516b210ba857379e05bbc9b9b4584 (patch) | |
tree | fc0e540f209fa53120d9fba6ca9960c9f9cc28fd /bytecode.pl | |
parent | 83b0a0109e1eed27ea70e7f37c84621d166a32ce (diff) | |
download | perl-47358472068516b210ba857379e05bbc9b9b4584.tar.gz |
Change FREAD/FGETC to BGET_FREAD/BGET_FGETC to avoid clash with
preprocessor symbol on Digital UNIX.
p4raw-id: //depot/perl@602
Diffstat (limited to 'bytecode.pl')
-rw-r--r-- | bytecode.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bytecode.pl b/bytecode.pl index c545f4136d..4553edf9bc 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -88,7 +88,7 @@ void byterun(FILE *fp) { dTHR; int insn; - while ((insn = FGETC()) != EOF) { + while ((insn = BGET_FGETC()) != EOF) { switch (insn) { EOT |