git: 9front

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