blob: bcd5b0f417751baa08e76533fadd3f597e54ba14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $OpenBSD: strcoll_l.c,v 1.1 2017/09/05 03:16:13 schwarze Exp $ */
/*
* Written in 2017 by Ingo Schwarze <schwarze@openbsd.org>.
* Released into the public domain.
*/
#include <string.h>
int
strcoll_l(const char *s1, const char *s2,
locale_t locale __attribute__((__unused__)))
{
return strcmp(s1, s2);
}
|