blob: 28496d7ae333e1e3bdfbd1e14ccce5791d58f27d [file] [log] [blame]
/*
* Header for libc stdlib functions
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License version 2.
*/
#ifndef _STDLIB_H_
#define _STDLIB_H_
long int strtol(const char *nptr, char **endptr, int base);
unsigned long int strtoul(const char *nptr, char **endptr, int base);
long long int strtoll(const char *nptr, char **endptr, int base);
unsigned long long int strtoull(const char *nptr, char **endptr, int base);
#endif /* _STDLIB_H_ */