Browse Source

MT#55283 remove unused function

Change-Id: I909585611e44d48128ea837fd641cc7de75ac2a0
pull/1776/head
Richard Fuchs 2 years ago
parent
commit
afbd7d4f0d
2 changed files with 0 additions and 11 deletions
  1. +0
    -9
      daemon/helpers.c
  2. +0
    -2
      include/helpers.h

+ 0
- 9
daemon/helpers.c View File

@ -77,15 +77,6 @@ static const struct scheduler schedulers[] = {
GList *g_list_link(GList *list, GList *el) {
el->prev = NULL;
el->next = list;
if (list)
list->prev = el;
return el;
}
int pcre2_multi_match(pcre2_code *re, const char *s, unsigned int num, parse_func f,
void *p, GQueue *q)
{


+ 0
- 2
include/helpers.h View File

@ -40,8 +40,6 @@ INLINE void strdupfree(char **, const char *);
/*** GLIB HELPERS ***/
GList *g_list_link(GList *, GList *);
#if !GLIB_CHECK_VERSION(2,62,0)
// from https://github.com/GNOME/glib/blob/master/glib/glist.c


Loading…
Cancel
Save