diff options
Diffstat (limited to 'misc/cgo/stdio/file.go')
-rw-r--r-- | misc/cgo/stdio/file.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/cgo/stdio/file.go b/misc/cgo/stdio/file.go index 6e7d479ad..e7bb906a5 100644 --- a/misc/cgo/stdio/file.go +++ b/misc/cgo/stdio/file.go @@ -1,3 +1,5 @@ +// skip + // 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. @@ -23,9 +25,6 @@ import "unsafe" type File C.FILE -var Stdout = (*File)(C.stdout) -var Stderr = (*File)(C.stderr) - // Test reference to library symbol. // Stdout and stderr are too special to be a reliable test. //var = C.environ |