mirror of https://github.com/minio/minio.git
15 lines
379 B
Go
15 lines
379 B
Go
// +build freebsd netbsd openbsd
|
|
|
|
// Copyright 2014 Oleku Konko All rights reserved.
|
|
// Use of this source code is governed by a MIT
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// This module is a Terminal API for the Go Programming Language.
|
|
// The protocols were written in pure Go and works on windows and unix systems
|
|
|
|
package ts
|
|
|
|
const (
|
|
TIOCGWINSZ = 0x40087468
|
|
)
|