From 3a069a34a2250fb4a4a2c9120efd43f8809d0fe4 Mon Sep 17 00:00:00 2001 From: matoro Date: Thu, 1 Sep 2022 14:29:51 -0400 Subject: [PATCH] Add sparc support --- ztypes_sparcx.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ztypes_sparcx.go diff --git a/ztypes_sparcx.go b/ztypes_sparcx.go new file mode 100644 index 0000000..06e4431 --- /dev/null +++ b/ztypes_sparcx.go @@ -0,0 +1,12 @@ +//go:build sparc || sparc64 +// +build sparc sparc64 + +// Code generated by cmd/cgo -godefs; DO NOT EDIT. +// cgo -godefs types.go + +package pty + +type ( + _C_int int32 + _C_uint uint32 +)