mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 20:16:54 +03:00
amiga os 3 does not have strtoull so use strtoul as next best thing
This commit is contained in:
parent
69d31afcde
commit
51c2d48096
@ -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.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user