pxe: Fix recognition of keeppxe option
[syslinux.git] / com32 / lib / atox.c
blobe9917cd638bd4cdee5c854a74efcf1419083cb44
1 /*
2 * atox.c
4 * atoi(), atol(), atoll()
5 */
7 #include <inttypes.h>
8 #include <stdlib.h>
9 #include <stdio.h>
11 TYPE NAME(const char *nptr)
13 return (TYPE) strntoumax(nptr, (char **)NULL, 10, ~(size_t) 0);