|
@@ -1,6 +1,7 @@
|
|
#include <wchar.h>
|
|
#include <wchar.h>
|
|
#include <time.h>
|
|
#include <time.h>
|
|
#include <locale.h>
|
|
#include <locale.h>
|
|
|
|
+#include "locale_impl.h"
|
|
#include "libc.h"
|
|
#include "libc.h"
|
|
|
|
|
|
const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm *tm, locale_t loc);
|
|
const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm *tm, locale_t loc);
|
|
@@ -64,7 +65,7 @@ size_t __wcsftime_l(wchar_t *restrict s, size_t n, const wchar_t *restrict f, co
|
|
|
|
|
|
size_t wcsftime(wchar_t *restrict wcs, size_t n, const wchar_t *restrict f, const struct tm *restrict tm)
|
|
size_t wcsftime(wchar_t *restrict wcs, size_t n, const wchar_t *restrict f, const struct tm *restrict tm)
|
|
{
|
|
{
|
|
- return __wcsftime_l(wcs, n, f, tm, 0);
|
|
|
|
|
|
+ return __wcsftime_l(wcs, n, f, tm, CURRENT_LOCALE);
|
|
}
|
|
}
|
|
|
|
|
|
weak_alias(__wcsftime_l, wcsftime_l);
|
|
weak_alias(__wcsftime_l, wcsftime_l);
|