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