git: 9front

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