summaryrefslogtreecommitdiff
path: root/tblcmp.c
diff options
context:
space:
mode:
authorvern <vern>1993-12-07 10:18:09 +0000
committervern <vern>1993-12-07 10:18:09 +0000
commit1ea723f71c89ce14c73e021a1a787caf6d91a57e (patch)
treea7b3cfb22eac6bc8ff3b1a74228330bab4ee8098 /tblcmp.c
parent4c147e897844c5511daffe8227167cf59b5cd696 (diff)
downloadflex-1ea723f71c89ce14c73e021a1a787caf6d91a57e.tar.gz
{min,max,abs} -> {MIN,MAX,ABS}
Diffstat (limited to 'tblcmp.c')
-rw-r--r--tblcmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tblcmp.c b/tblcmp.c
index f688247..9dfc51d 100644
--- a/tblcmp.c
+++ b/tblcmp.c
@@ -26,7 +26,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-/* $Header: /cvsroot/flex/flex/tblcmp.c,v 2.9 1993/09/16 20:32:00 vern Exp $ */
+/* $Header: /cvsroot/flex/flex/tblcmp.c,v 2.10 1993/12/07 10:18:30 vern Exp $ */
#include "flexdef.h"
@@ -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 );
}