git: 9front

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