git: 9front

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