mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
* gnu/packages/patches/proot-add-missing-include.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/linux.scm (proot): Use it. Change-Id: Ia160417b06073c29b9f540fc4883d1f74dfd6003
15 lines
376 B
Diff
15 lines
376 B
Diff
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)
|