git: 9front

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