blob: 0001edc5c4680466211773a809f7b8f414f65eff (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef STDLIB_H_
#define STDLIB_H_
char *snprintf(char *buf, unsigned int max, const char *format, ...);
float strtof(const char *s, char **endptr);
extern int atoi(const char *);
#endif // STDLIB_H_
|