index
:
plan9front.git
cosa
front
gicv2
gicvn
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
src
/
libc
/
port
/
atoll.c
blob: b4497de59caa6618942f7f43e23290e40a7a4bbb (
plain
)
1
2
3
4
5
6
7
8
#include
<u.h>
#include
<libc.h>
vlong
atoll
(
char
*
s
)
{
return
strtoll
(
s
,
nil
,
0
);
}