aboutsummaryrefslogtreecommitdiff
path: root/taipan.c
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2016-01-08 06:47:29 -0500
committerB. Watson <yalhcru@gmail.com>2016-01-08 06:47:29 -0500
commit63dc8498642b9bd088910a923ed953108f98d207 (patch)
treef50efa4b8bc90fe04924555e58e377d8b0e49487 /taipan.c
parent7012ad570a2739a51f9f1f5605a9efa44416869c (diff)
downloadtaipan-63dc8498642b9bd088910a923ed953108f98d207.tar.gz
use custom long-to-ascii routine
Diffstat (limited to 'taipan.c')
-rw-r--r--taipan.c4
1 files changed, 4 insertions, 0 deletions
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