summaryrefslogtreecommitdiff
path: root/tblcmp.c
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-12-07 10:18:09 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-12-07 10:18:09 +0000
commit08f37c757a8c9afbbe514527b6ba0676db5edee7 (patch)
treea844f97b31edc3f6ca76449728b3c081e5de61f3 /tblcmp.c
parentcd0e94e833e69b7b52210125b74f2728bdbb2afb (diff)
{min,max,abs} -> {MIN,MAX,ABS}
Diffstat (limited to 'tblcmp.c')
-rw-r--r--tblcmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tblcmp.c b/tblcmp.c
index 654f95c..e8dd615 100644
--- a/tblcmp.c
+++ b/tblcmp.c
@@ -610,7 +610,7 @@ int numchars, statenum, deflink, totaltrans;
/* Ensure that the base address we eventually generate is
* non-negative.
*/
- baseaddr = max( tblend + 1, minec );
+ baseaddr = MAX( tblend + 1, minec );
}
tblbase = baseaddr - minec;
@@ -635,7 +635,7 @@ int numchars, statenum, deflink, totaltrans;
for ( ++firstfree; chk[firstfree] != 0; ++firstfree )
;
- tblend = max( tblend, tbllast );
+ tblend = MAX( tblend, tbllast );
}