index
:
emorgan/plan9port.git
master
Plan9 port with some modifications
Ethan Morgan
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
lib9
/
atoll.c
blob: d4ce0a94cab0c9a6718c86c277644b093ed78452 (
plain
)
1
2
3
4
5
6
7
8
#include
<u.h>
#include
<libc.h>
vlong
atoll
(
char
*
s
)
{
return
strtoll
(
s
,
0
,
0
);
}