summaryrefslogtreecommitdiff
path: root/misc/cgo/testso/cgoso_c.c
blob: e29f7e8071c4daef6f6dab3eb7dd23fa1c45f237 (plain)
1
2
3
4
5
6
7
8
9
// 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.

void sofunc(void)
{
	extern void goCallback(void);
	goCallback();
}