git: 9front

ref: ad8dadde21e56649a199349d19b4820e5685fc13
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);
}