git: 9front

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