summaryrefslogtreecommitdiff
path: root/src/locale/strcoll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/locale/strcoll.c')
-rw-r--r--src/locale/strcoll.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/locale/strcoll.c b/src/locale/strcoll.c
new file mode 100644
index 00000000..30bccd62
--- /dev/null
+++ b/src/locale/strcoll.c
@@ -0,0 +1,6 @@
+#include <string.h>
+
+int strcoll(const char *l, const char *r)
+{
+ return strcmp(l, r);
+}