diff --git a/src/kernel/libroot/posix/string/strcoll.c b/src/kernel/libroot/posix/string/strcoll.c new file mode 100644 index 0000000000..26aba7e673 --- /dev/null +++ b/src/kernel/libroot/posix/string/strcoll.c @@ -0,0 +1,16 @@ +/* +** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. +** Distributed under the terms of the Haiku License. +*/ + + +#include + + +int +strcoll(const char *a, const char *b) +{ + // ToDo: implement me properly! + return strcmp(a, b); +} +