1// +build darwin
2
3// Copyright 2014 Oleku Konko All rights reserved.
4// Use of this source code is governed by a MIT
5// license that can be found in the LICENSE file.
6
7// This module is a Terminal  API for the Go Programming Language.
8// The protocols were written in pure Go and works on windows and unix systems
9
10package ts
11
12const (
13	TIOCGWINSZ = 0x40087468
14)
15