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