1 /* Adapted from common/lib/libc/stdlib/strtoul.c */
5 #include <lib/libkern/libkern.h>
6 #include <lib/libsa/stand.h>
8 #define _FUNCNAME strtol
10 #define __INT_MIN LONG_MIN
11 #define __INT_MAX LONG_MAX
13 long strtol(const char * __restrict
, char ** __restrict
, int);