at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / ansi / atoi.c
blobec829c7042282aff74679ffa95197bcecb3e49b4
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$ */
7 #include <ctype.h>
8 #include <stdlib.h>
10 int
11 atoi(register const char *nptr)
13 return strtol(nptr, (char **) NULL, 10);