From c34436b973319b89cca78b0c349d5ae4cb6f8906 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Mon, 18 Apr 2022 13:41:19 +0100 Subject: [PATCH] Added 'os400' (#201) As per https://github.com/chzyer/readline/pull/175#issuecomment-1100887727 --- term.go | 2 +- term_nosyscall6.go | 2 +- utils_unix.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/term.go b/term.go index b7520fb..ea5db93 100644 --- a/term.go +++ b/term.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build aix darwin dragonfly freebsd linux,!appengine netbsd openbsd solaris +// +build aix darwin dragonfly freebsd linux,!appengine netbsd openbsd os400 solaris // Package terminal provides support functions for dealing with terminals, as // commonly found on UNIX systems. diff --git a/term_nosyscall6.go b/term_nosyscall6.go index 1e12878..df92339 100644 --- a/term_nosyscall6.go +++ b/term_nosyscall6.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build aix solaris +// +build aix os400 solaris package readline diff --git a/utils_unix.go b/utils_unix.go index d1caecb..fc49492 100644 --- a/utils_unix.go +++ b/utils_unix.go @@ -1,4 +1,4 @@ -// +build aix darwin dragonfly freebsd linux,!appengine netbsd openbsd solaris +// +build aix darwin dragonfly freebsd linux,!appengine netbsd openbsd os400 solaris package readline