summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/utils.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/utils.h b/utils/utils.h
index 3995071cd..31a86c60e 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -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.
*