git: 9front

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