repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git]
/
lib
/
ansi
/
atoi.c
blob
ec829c7042282aff74679ffa95197bcecb3e49b4
1
/*
2
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3
* See the copyright notice in the ACK home directory, in the file "Copyright".
4
*/
5
/* $Header$ */
6
7
#include <ctype.h>
8
#include <stdlib.h>
9
10
int
11
atoi
(
register
const char
*
nptr
)
12
{
13
return
strtol
(
nptr
, (
char
**)
NULL
,
10
);
14
}