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
/
ape
/
lib
/
ap
/
gen
/
atol.c
blob: 41e6040fe5b02c1f63ace48ff8dff743093ab335 (
plain
)
1
2
3
4
5
6
7
#include
<stdlib.h>
long
atol
(
const
char
*
s
)
{
return
(
strtol
(
s
,
(
char
**
)
0
,
10
));
}