blob: 66ecb4efffd5c6a79e215559afc59458cc355836 [file] [log] [blame]
rsc3a9dccd2004-04-02 22:57:49 +00001#include <u.h>
2#include <libc.h>
3
4int
5atoi(char *s)
6{
7 return strtol(s, 0, 0);
8}
9