diff options
Diffstat (limited to 'src/locale/strcoll_l.c')
-rw-r--r-- | src/locale/strcoll_l.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/locale/strcoll_l.c b/src/locale/strcoll_l.c new file mode 100644 index 00000000..7948b0d1 --- /dev/null +++ b/src/locale/strcoll_l.c @@ -0,0 +1,7 @@ +#include <string.h> +#include <locale.h> + +int strcoll_l(const char *l, const char *r, locale_t loc) +{ + return strcoll(l, r); +} |