summaryrefslogtreecommitdiff
path: root/stdlib.c
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2017-06-14 13:09:23 -0500
committerWilliam Pitcock <nenolod@dereferenced.org>2017-06-14 13:09:23 -0500
commitf67416822a54109bd9cfa0fd210d7d8f53412ced (patch)
tree7d3d14933f39ca160d706d1bec25ce541a188962 /stdlib.c
parent2b58008b911d9dc8354b9001e22b594fa6456dd1 (diff)
downloadgcompat-f67416822a54109bd9cfa0fd210d7d8f53412ced.tar.gz
gcompat-f67416822a54109bd9cfa0fd210d7d8f53412ced.tar.bz2
gcompat-f67416822a54109bd9cfa0fd210d7d8f53412ced.tar.xz
gcompat-f67416822a54109bd9cfa0fd210d7d8f53412ced.zip
move all compatibility library stuff into libgcompat/
Diffstat (limited to 'stdlib.c')
-rw-r--r--stdlib.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/stdlib.c b/stdlib.c
deleted file mode 100644
index 30c904e..0000000
--- a/stdlib.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#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);
- return strtod(__nptr, __endptr);
-}