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 /byterun.c | |
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 'byterun.c')
-rw-r--r-- | byterun.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ void byterun(FILE *fp) { dTHR; int insn; - while ((insn = FGETC()) != EOF) { + while ((insn = BGET_FGETC()) != EOF) { switch (insn) { case INSN_COMMENT: /* 35 */ { |