summaryrefslogtreecommitdiff
path: root/byterun.c
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-02-27 18:35:27 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-02-27 18:35:27 +0000
commit47358472068516b210ba857379e05bbc9b9b4584 (patch)
treefc0e540f209fa53120d9fba6ca9960c9f9cc28fd /byterun.c
parent83b0a0109e1eed27ea70e7f37c84621d166a32ce (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun.c b/byterun.c
index 57c662009a..7c32930a6a 100644
--- a/byterun.c
+++ b/byterun.c
@@ -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 */
{