diff options
Diffstat (limited to 'memory/wrap/strtoll.c')
-rw-r--r-- | memory/wrap/strtoll.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/memory/wrap/strtoll.c b/memory/wrap/strtoll.c new file mode 100644 index 0000000..27bda06 --- /dev/null +++ b/memory/wrap/strtoll.c @@ -0,0 +1,8 @@ +#include "memory.h" +#include <stdlib.h> + +long long _strtoll_wrap(char const *restrict string, char **restrict invalid, + int base) +{ + return strtoll(string, invalid, base); +} |