mirror of
https://github.com/golang/go
synced 2024-11-18 17:34:51 -07:00
b945b741e1
Split stdout/stderr into a separate file so that can be handled differently on some platforms. Both NetBSD and OpenBSD have defines for stdout/stderr that require some coercion in order for cgo to handle them correctly. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6247062
16 lines
294 B
Go
16 lines
294 B
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !netbsd
|
|
|
|
package stdio
|
|
|
|
/*
|
|
#include <stdio.h>
|
|
*/
|
|
import "C"
|
|
|
|
var Stdout = (*File)(C.stdout)
|
|
var Stderr = (*File)(C.stderr)
|