diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 16:25:08 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 16:25:08 -0800 |
commit | 1cb0ec225dd97470208cc9e3b59cf35d8f4e3a0b (patch) | |
tree | 4cd531366cc90a7521d363e5561c25e9e5328b20 /system/include/xlocale.h | |
parent | cf5947187de4390ad0440940f323470b37befbc8 (diff) |
restore libcxx to pristine state, undoing all our hacks, and work towards fixing test_exceptions given that
Diffstat (limited to 'system/include/xlocale.h')
-rw-r--r-- | system/include/xlocale.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/system/include/xlocale.h b/system/include/xlocale.h new file mode 100644 index 00000000..f9208b76 --- /dev/null +++ b/system/include/xlocale.h @@ -0,0 +1,16 @@ + +#ifndef _XLOCALE_H_ +#define _XLOCALE_H_ + +#include <locale.h> + +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); + +int isxdigit_l(int c, locale_t locale); +int isdigit_l(int c, locale_t locale); + +#endif /* _LOCALE_H_ */ + |