git: 9front

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