git: 9front

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