git: 9front

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