amiga os 3 does not have strtoull so use strtoul as next best thing

This commit is contained in:
Vincent Sanders 2019-10-20 09:34:39 +01:00
parent 69d31afcde
commit 51c2d48096
1 changed files with 4 additions and 0 deletions

View File

@ -75,6 +75,10 @@
#define ceilf(x) (float)ceil((double)x)
#endif
#if !defined(__amigaos4__) && defined(__AMIGA__)
#define strtoull(n,e,b) (unsigned long long int)strtoul(n,e,b)
#endif
/**
* Calculate length of constant C string.
*