Sign in
plan9port
/
plan9
/
294f22a4705f221b9f5cf0d8df0dc7cf7626b886
/
.
/
src
/
lib9
/
atoll.c
blob: 6c345df6632f1dc7349898df644b7c4b07a73669 [
file
] [
log
] [
blame
]
#include
<u.h>
#include
<libc.h>
vlong
atoll
(
char
*
s
)
{
return
strtoll
(
s
,
0
,
0
);
}