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