1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
From: Marc Haber <mh+debian-packages@zugschlus.de>
Date: Wed, 18 Jun 2025 20:54:35 +0200
Subject: add missing includes
---
Source/filter.c | 1 +
Source/main.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/Source/filter.c b/Source/filter.c
index ff8a0fd..0fd6b30 100644
--- a/Source/filter.c
+++ b/Source/filter.c
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <ctype.h>
+#include <string.h>
#include <fnmatch.h>
diff --git a/Source/main.c b/Source/main.c
index fee0242..288bc0b 100644
--- a/Source/main.c
+++ b/Source/main.c
@@ -37,6 +37,7 @@
#include <pwd.h>
#include <stdlib.h>
#include <getopt.h>
+#include <grp.h>
#include "defines.h"
#include "configuration.h"
|