diff options
Diffstat (limited to 'taipan.c')
-rw-r--r-- | taipan.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |