git: 9front

ref: 69ad74ec96187d96516f1c7e0f7e95063bdee47f
dir: /sys/src/ape/lib/ap/gen/atol.c/

View raw version
#include	<stdlib.h>

long
atol(const char *s)
{
	return(strtol(s, (char **)0, 10));
}