summaryrefslogtreecommitdiff
path: root/src/string/strcoll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strcoll.c')
-rw-r--r--src/string/strcoll.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/string/strcoll.c b/src/string/strcoll.c
index a6a44e8d..875d990c 100644
--- a/src/string/strcoll.c
+++ b/src/string/strcoll.c
@@ -1,8 +1,9 @@
+#include <stdlib.h>
#include <string.h>
-#include "stdlib.h"
#include "_assert.h"
/** collate strings **/
+
int strcoll(const char *s1, const char *s2)
{
char *x1 = NULL;
@@ -38,7 +39,5 @@ compares the collation values of the strings at ARGUMENT(s1) and ARGUMENT(s2).
/*
LC_COLLATE
-*/
-/*
STDC(1)
*/