xref: /plan9-contrib/sys/src/ape/lib/ap/gen/itoa.c (revision 9b943567965ba040fd275927fbe088656eb8ce4f)
1 #include	<stdlib.h>
2 
3 int
4 itoa(const char *s)
5 {
6 	return(strtol(s, (char **)0, 10));
7 }
8