git: 9front

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