Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
9a59faab3c0c46d2e96245e11fc71351caba1a2e
/
.
/
src
/
locale
/
strcoll.c
blob: 30bccd621ca9b6f377eb2817879ae1ca5fd7b49c [
file
] [
log
] [
blame
]
#include
<string.h>
int
strcoll
(
const
char
*
l
,
const
char
*
r
)
{
return
strcmp
(
l
,
r
);
}