git: 9front

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