From 63dc8498642b9bd088910a923ed953108f98d207 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Fri, 8 Jan 2016 06:47:29 -0500 Subject: use custom long-to-ascii routine --- taipan.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'taipan.c') diff --git a/taipan.c b/taipan.c index 2624842..d6892ec 100644 --- a/taipan.c +++ b/taipan.c @@ -177,6 +177,10 @@ unsigned char get_item(unsigned char allow_all) { } } +/* modified ultoa() with hardcoded radix */ +extern char *ultostr(unsigned long value, char* s); +#define ultoa(x, y, z) ultostr(x, y) + /* taipan functions (modified as little as possible) */ #define GENERIC 1 #define LI_YUEN 2 -- cgit v1.2.3