xref: /kvm-unit-tests/lib/stdlib.h (revision c865f654ffe4c5955038aaf74f702ba62f3eb014)
1 /*
2  * Header for libc stdlib functions
3  *
4  * This code is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU Library General Public License version 2.
6  */
7 #ifndef _STDLIB_H_
8 #define _STDLIB_H_
9 
10 long int strtol(const char *nptr, char **endptr, int base);
11 unsigned long int strtoul(const char *nptr, char **endptr, int base);
12 
13 #endif /* _STDLIB_H_ */
14