summaryrefslogtreecommitdiff
path: root/nix/libutil/seccomp.hh
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-06-24 21:04:02 +0200
committerAndreas Enge <andreas@enge.fr>2025-06-25 14:33:26 +0200
commit3eb03534e687d06753a41842860d1742ac2296a3 (patch)
tree09cb38a8e38d5fbc9285ef69c061e12da1b35ab9 /nix/libutil/seccomp.hh
parentb2e473f9344c805ab7690923b6075d86f6e36d56 (diff)
daemon: Fix build with gcc-14.
* nix/libutil/seccomp.hh: Include cstdint. Change-Id: I454c7abd56abbe4cf03a5bc8ebc402678e07a0f0
Diffstat (limited to 'nix/libutil/seccomp.hh')
-rw-r--r--nix/libutil/seccomp.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/nix/libutil/seccomp.hh b/nix/libutil/seccomp.hh
index 634dfad5f8e..583500b094c 100644
--- a/nix/libutil/seccomp.hh
+++ b/nix/libutil/seccomp.hh
@@ -1,6 +1,7 @@
1#pragma once 1#pragma once
2 2
3#include "util.hh" 3#include "util.hh"
4#include <cstdint>
4#include <linux/audit.h> /* For AUDIT_ARCH_* */ 5#include <linux/audit.h> /* For AUDIT_ARCH_* */
5#include <linux/seccomp.h> 6#include <linux/seccomp.h>
6#include <linux/filter.h> 7#include <linux/filter.h>