git: 9front

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