]> Cypherpunks.ru repositories - gostls13.git/blob - misc/cgo/test/issue3729w.go
all: make copyright headers consistent with one space after period
[gostls13.git] / misc / cgo / test / issue3729w.go
1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // Issue 3729:  cmd/cgo: access errno from void C function
6 // void f(void) returns [0]byte, error in Go world.
7
8 // +build windows
9
10 package cgotest
11
12 import "testing"
13
14 func test3729(t *testing.T) {
15         t.Log("skip errno test on Windows")
16 }