git: 9front

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