git: 9front

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