aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/std/types.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-02-28 20:47:23 +0900
committerOphestra <cat@gensokyo.uk>2026-02-28 20:48:30 +0900
commitad8f799703a4bf8d87741890ba831856af2dd145 (patch)
tree26877d60bb5bd03fb98f85b28a9a99bad1d96f6d /container/std/types.go
parentc74c269b66770f0eddde255d2805b79f274409e9 (diff)
container/std: rename seccomp types
Aliases will be kept until 0.4. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/std/types.go')
-rw-r--r--container/std/types.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/container/std/types.go b/container/std/types.go
new file mode 100644
index 00000000..e1b53063
--- /dev/null
+++ b/container/std/types.go
@@ -0,0 +1,8 @@
+package std
+
+type (
+ // Uint is equivalent to C.uint.
+ Uint uint32
+ // Int is equivalent to C.int.
+ Int int32
+)