git: 9front

ref: 775447fcb0fa0e7e7029249510688f757d44d4a6
dir: /sys/src/libc/port/atoll.c/

View raw version
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 0);
}