git: 9front

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