aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs6rc/s6rc_strrefcmp.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-10-09 17:14:12 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2025-10-09 17:14:12 +0000
commitd71f18b44e4168e2d942b503110af5b5314364b5 (patch)
tree233308156382cd94baa0407dfd8f900fb98de118 /src/libs6rc/s6rc_strrefcmp.c
parent0ea45c6552010c36e4718542db759ec6cdfce58a (diff)
downloads6-rc-d71f18b44e4168e2d942b503110af5b5314364b5.tar.gz
Move all string comparison operations into skalibs
Diffstat (limited to 'src/libs6rc/s6rc_strrefcmp.c')
-rw-r--r--src/libs6rc/s6rc_strrefcmp.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/libs6rc/s6rc_strrefcmp.c b/src/libs6rc/s6rc_strrefcmp.c
deleted file mode 100644
index e4732df..0000000
--- a/src/libs6rc/s6rc_strrefcmp.c
+++ /dev/null
@@ -1,10 +0,0 @@
-/* ISC license. */
-
-#include <string.h>
-
-#include <s6-rc/s6rc-utils.h>
-
-int s6rc_strrefcmp (void const *a, void const *b)
-{
- return strcmp(*(char const *const *)a, *(char const *const *)b) ;
-}