git: 9front

ref: 53e9e6274808f8644903da03ec941036c76b70eb
dir: /sys/src/ape/lib/ap/gen/itoa.c/

View raw version
#include	<stdlib.h>

int
itoa(const char *s)
{
	return(strtol(s, (char **)0, 10));
}