diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-09-06 21:32:39 +0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-09-13 10:07:03 -0700 |
commit | 8f1db82f5ab8c2fdfcdeccd7e502f1854da5d696 (patch) | |
tree | 9d6c883dc0b72a1a31cb205428e1521298aa25eb | |
parent | 733e6877d7b1146ecb5c796f4d249843101a7b5f (diff) |
Incorrect return type on a compat header.
This was exposed by the update to musl 0.9.13 which now has a
prototype for this function.
-rw-r--r-- | system/include/compat/xlocale.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/compat/xlocale.h b/system/include/compat/xlocale.h index c0091164..52b9b26a 100644 --- a/system/include/compat/xlocale.h +++ b/system/include/compat/xlocale.h @@ -9,7 +9,7 @@ extern "C" { long long strtoll_l(const char *start, char **end, int base, locale_t loc); unsigned long long strtoull_l(const char *start, char **end, int base, locale_t loc); -double strtold_l(const char *start, char **end, locale_t loc); +long double strtold_l(const char *start, char **end, locale_t loc); #ifdef __cplusplus } |