aboutsummaryrefslogtreecommitdiff
path: root/src/libmp/port/dat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmp/port/dat.h')
-rw-r--r--src/libmp/port/dat.h4
1 files changed, 2 insertions, 2 deletions
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)