diff options
Diffstat (limited to 'stdlib.c')
-rw-r--r-- | stdlib.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,6 +1,12 @@ #include <assert.h> // assert #include <stdlib.h> // strtod +char *__realpath_chk(const char *path, char *resolved_path) +{ + assert(path != NULL); + return realpath(path, resolved_path); +} + double __strtod_internal(const char *__nptr, char **__endptr, int __group) { assert(__group == 0); |