summaryrefslogtreecommitdiff
path: root/stdlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib.c')
-rw-r--r--stdlib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/stdlib.c b/stdlib.c
index b81eb91..30c904e 100644
--- a/stdlib.c
+++ b/stdlib.c
@@ -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);