Add statvfs and strtold

This commit is contained in:
Jeremy Soller
2018-12-14 12:00:21 -07:00
parent 0d2332d368
commit 74af56d71b
12 changed files with 157 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef _BITS_STDLIB_H
#define _BITS_STDLIB_H
#ifdef __cplusplus
extern "C" {
#endif
long double strtold(const char *nptr, char **endptr);
#ifdef __cplusplus
} // extern "C"
#endif
#endif /* _BITS_STDLIB_H */