trampoline/lib/lib9/atoll.c

9 lines
85 B
C

#include <u.h>
#include <libc.h>
vlong
atoll(char *s)
{
return strtoll(s, 0, 0);
}