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