aboutsummaryrefslogtreecommitdiffstats
path: root/memory/atoll.c
diff options
context:
space:
mode:
Diffstat (limited to 'memory/atoll.c')
-rw-r--r--memory/atoll.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/memory/atoll.c b/memory/atoll.c
new file mode 100644
index 0000000..85b190f
--- /dev/null
+++ b/memory/atoll.c
@@ -0,0 +1,3 @@
+#include "memory.h"
+
+long long atoll(char const *string) { return _strtoll_wrap(string, NULL, 10); }