git: 9front

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