blob: 27bda06dd41e26c548830e14b27f2592212a5520 (
plain) (
blame)
1
2
3
4
5
6
7
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);
}
|