git: 9front

ref: f3e24e40bd024de6c8e4766b5d80089b3232ef1a
dir: /sys/src/ape/lib/ap/gen/atoll.c/

View raw version
#include	<stdlib.h>

long long
atoll(const char *s)
{
	return(strtoll(s, (char **)0, 10));
}