From cbeb0b26e4c7caa8d1b47de791a7418dc20a4567 Mon Sep 17 00:00:00 2001 From: rsc Date: Sat, 1 Apr 2006 19:24:03 +0000 Subject: Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms. --- src/libmp/port/dat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libmp/port/dat.h') diff --git a/src/libmp/port/dat.h b/src/libmp/port/dat.h index 50fbf671..95f4196f 100644 --- a/src/libmp/port/dat.h +++ b/src/libmp/port/dat.h @@ -1,12 +1,12 @@ #define mpdighi (mpdigit)((ulong)1<<(Dbits-1)) #define DIGITS(x) ((Dbits - 1 + (x))/Dbits) -// for converting between int's and mpint's +/* for converting between int's and mpint's */ #define MAXUINT ((uint)-1) #define MAXINT (MAXUINT>>1) #define MININT (MAXINT+1) -// for converting between vlongs's and mpint's +/* for converting between vlongs's and mpint's */ #define MAXUVLONG (~0ULL) #define MAXVLONG (MAXUVLONG>>1) #define MINVLONG (MAXVLONG+1ULL) -- cgit v1.2.3