summaryrefslogtreecommitdiff
path: root/lib9/strtoull.c
diff options
context:
space:
mode:
authorforsyth <forsyth@vitanuova.com>2010-05-04 09:57:12 +0100
committerforsyth <forsyth@vitanuova.com>2010-05-04 09:57:12 +0100
commit42b20a3c0386fdf0981fdc4be68d64f84e2dace5 (patch)
tree944df2902e161450f3e630a26deb870f830e60d3 /lib9/strtoull.c
parent5fa9f9468e71b4a1125dd7c209fd5ab9a37ab1e2 (diff)
20100504-0957
Diffstat (limited to 'lib9/strtoull.c')
-rw-r--r--lib9/strtoull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib9/strtoull.c b/lib9/strtoull.c
index 3f08ba61..040f28e7 100644
--- a/lib9/strtoull.c
+++ b/lib9/strtoull.c
@@ -1,6 +1,6 @@
#include "lib9.h"
-#define UVLONG_MAX (1LL<<63)
+#define UVLONG_MAX ((uvlong)1<<63)
uvlong
strtoull(char *nptr, char **endptr, int base)