git: 9front

ref: abc13e8a85ea689dace99e77bc07ba2e96f5cebc
dir: /sys/src/libc/port/atoll.c/

View raw version
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 10);
}