index
:
plan9port.git
master
This is a port of many Plan 9 libraries and programs to Unix. [forked]
nobody
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
lib9
/
atoll.c
blob: 6c345df6632f1dc7349898df644b7c4b07a73669 (
plain
)
1
2
3
4
5
6
7
8
9
#include <u.h> #include <libc.h> vlong atoll(char *s) { return strtoll(s, 0, 0); }