diff options
Diffstat (limited to 'src/locale/wcscoll_l.c')
-rw-r--r-- | src/locale/wcscoll_l.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/locale/wcscoll_l.c b/src/locale/wcscoll_l.c new file mode 100644 index 00000000..f257ec8d --- /dev/null +++ b/src/locale/wcscoll_l.c @@ -0,0 +1,6 @@ +#include <wchar.h> + +int wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale) +{ + return wcscoll(l, r); +} |