shithub: riscv

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