Sign in
plan9port
/
plan9
/
4ac5f249ad40f3452fc87dc9a3f4b9d9546c83b0
/
.
/
src
/
lib9
/
atol.c
blob: d67138342bfa51ee350cf126365917fefb0ef689 [
file
]
#include
<u.h>
#include
<libc.h>
long
atol
(
char
*
s
)
{
return
strtol
(
s
,
0
,
0
);
}