summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strcoll_l.c
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2023-04-23 13:43:47 +0000
committercvs2svn <admin@example.com>2023-04-23 13:43:47 +0000
commite2496982472bdf233be95c5ea72d1c4dc6c91db3 (patch)
tree316488e5daf86864d8466bce0e5b000d85768378 /src/lib/libc/string/strcoll_l.c
parent097d0cf840b9007212bcd2516ed5e18939e6da3d (diff)
downloadopenbsd-tb_20230422.tar.gz
openbsd-tb_20230422.tar.bz2
openbsd-tb_20230422.zip
This commit was manufactured by cvs2git to create tag 'tb_20230422'.tb_20230422
Diffstat (limited to '')
-rw-r--r--src/lib/libc/string/strcoll_l.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lib/libc/string/strcoll_l.c b/src/lib/libc/string/strcoll_l.c
deleted file mode 100644
index bcd5b0f417..0000000000
--- a/src/lib/libc/string/strcoll_l.c
+++ /dev/null
@@ -1,14 +0,0 @@
1/* $OpenBSD: strcoll_l.c,v 1.1 2017/09/05 03:16:13 schwarze Exp $ */
2/*
3 * Written in 2017 by Ingo Schwarze <schwarze@openbsd.org>.
4 * Released into the public domain.
5 */
6
7#include <string.h>
8
9int
10strcoll_l(const char *s1, const char *s2,
11 locale_t locale __attribute__((__unused__)))
12{
13 return strcmp(s1, s2);
14}