at master 24 lines 753 B view raw
1From bdf4159dd5c1cf925512c0eb8490846c084e3c8c Mon Sep 17 00:00:00 2001 2From: Reepca Russelstein 3Date: Tue, 24 Jun 2025 22:35:04 -0500 4Subject: [PATCH] nix: libutil: add <cstdint> include to seccomp.hh. 5 6* nix/libutil/seccomp.hh (<cstdint>): add include of header. 7 8Change-Id: I0a0b2892d81dbab662eda1ba80f4736178d70c65 9--- 10 nix/libutil/seccomp.hh | 1 + 11 1 file changed, 1 insertion(+) 12 13diff --git a/nix/libutil/seccomp.hh b/nix/libutil/seccomp.hh 14index 634dfad5f8..a4b449fc66 100644 15--- a/nix/libutil/seccomp.hh 16+++ b/nix/libutil/seccomp.hh 17@@ -4,6 +4,7 @@ 18 #include <linux/audit.h> /* For AUDIT_ARCH_* */ 19 #include <linux/seccomp.h> 20 #include <linux/filter.h> 21+#include <cstdint> 22 23 24 /* This file provides two preprocessor macros (among other things):