2012-09-19 10:27:23 -06:00
|
|
|
// skip
|
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2012-06-04 09:38:55 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package stdio
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include <stdio.h>
|
2012-09-19 10:27:23 -06:00
|
|
|
|
|
|
|
// on mingw, stderr and stdout are defined as &_iob[FILENO]
|
|
|
|
// on netbsd, they are defined as &__sF[FILENO]
|
|
|
|
// and cgo doesn't recognize them, so write a function to get them,
|
|
|
|
// instead of depending on internals of libc implementation.
|
|
|
|
FILE *getStdout(void) { return stdout; }
|
|
|
|
FILE *getStderr(void) { return stderr; }
|
2012-06-04 09:38:55 -06:00
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
2012-09-19 10:27:23 -06:00
|
|
|
var Stdout = (*File)(C.getStdout())
|
|
|
|
var Stderr = (*File)(C.getStderr())
|