aboutsummaryrefslogtreecommitdiff
path: root/tests/core/cgo/use_external_symbol.go
blob: 70980ea7db3c8c7c5ad110137b377c8be2005ad7 (plain)
1
2
3
4
5
6
7
8
9
10
package use_external_symbol

/*
void external_symbol();
*/
import "C"

func UseExternalSymbol() {
	C.external_symbol()
}