git: 9front

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