git: 9front

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