git: 9front

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