shithub: front

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