git: 9front

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