git: 9front

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