From f283d6c99e86b1b0c7ec5ce61dfccb8c9bb787bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 1 Sep 2004 14:37:38 +0000 Subject: [PATCH] Added dummy strcoll() function. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8773 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/posix/string/strcoll.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/kernel/libroot/posix/string/strcoll.c 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); +} +