blob: 6eb9f40e38a89e1d8766b793d2b2ee8d0edda287 [file] [log] [blame]
// Copyright 2011 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.
package cgosotest
//void sofunc(void);
import "C"
func Test() {
C.sofunc()
}
//export goCallback
func goCallback() {
}