aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/std/types.go
diff options
context:
space:
mode:
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
+)