From c0229303f8fe4176d05286f3b887127c2b028368 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 21 Sep 2013 09:59:43 +0700 Subject: Add strtod(), wcstod(), wcstol() and friends. This implementation of strtod() replaces the old as it implements support for parsing hex constants which is needed by various tests. --- system/lib/libc/musl/src/internal/intscan.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 system/lib/libc/musl/src/internal/intscan.h (limited to 'system/lib/libc/musl/src/internal/intscan.h') diff --git a/system/lib/libc/musl/src/internal/intscan.h b/system/lib/libc/musl/src/internal/intscan.h new file mode 100644 index 00000000..994c5e7d --- /dev/null +++ b/system/lib/libc/musl/src/internal/intscan.h @@ -0,0 +1,8 @@ +#ifndef INTSCAN_H +#define INTSCAN_H + +#include + +unsigned long long __intscan(FILE *, unsigned, int, unsigned long long); + +#endif -- cgit v1.2.3-18-g5258