~ruther/guix-local

ref: 8a17c58ce3bfdbf0bbbdc693ef5f3af4deee36e5 guix-local/gnu/packages/patches/proot-add-missing-include.patch -rw-r--r-- 376 bytes
8a17c58c — Rodion Goritskov gnu: fail2ban: Fix tests. 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Add missing include to avoid implicit function declaration, prohibited with
GCC 14.

diff --git a/src/tracee/tracee.c b/src/tracee/tracee.c
index 9b16f6aa..39308c32 100644
--- a/src/tracee/tracee.c
+++ b/src/tracee/tracee.c
@@ -44,6 +44,7 @@
 #include "cli/note.h"
 
 #include "compat.h"
+#include "mem.h"
 
 #ifndef __W_STOPCODE
 #define __W_STOPCODE(sig)	((sig) <<8 | 0x7f)