summaryrefslogtreecommitdiff
path: root/misc/cgo/testso/cgoso.go
blob: 6eb9f40e38a89e1d8766b793d2b2ee8d0edda287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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() {
}