summaryrefslogtreecommitdiff
path: root/stdlib.c
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2016-08-30 04:46:47 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2016-08-30 04:46:47 -0500
commit7515ce3fa8b30f7b7d67bc2a659e15276c0923d7 (patch)
tree3d727e06ad85417602e7e933dc751c6a6a40a59c /stdlib.c
downloadgcompat-7515ce3fa8b30f7b7d67bc2a659e15276c0923d7.tar.gz
gcompat-7515ce3fa8b30f7b7d67bc2a659e15276c0923d7.tar.bz2
gcompat-7515ce3fa8b30f7b7d67bc2a659e15276c0923d7.tar.xz
gcompat-7515ce3fa8b30f7b7d67bc2a659e15276c0923d7.zip
Initial commit
Diffstat (limited to 'stdlib.c')
-rw-r--r--stdlib.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/stdlib.c b/stdlib.c
new file mode 100644
index 0000000..b81eb91
--- /dev/null
+++ b/stdlib.c
@@ -0,0 +1,8 @@
+#include <assert.h> // assert
+#include <stdlib.h> // strtod
+
+double __strtod_internal(const char *__nptr, char **__endptr, int __group)
+{
+ assert(__group == 0);
+ return strtod(__nptr, __endptr);
+}