delve/_fixtures/testvariablescgo/testvariablescgo.go

12 lines
126 B
Go
Raw Normal View History

package main
// #cgo CFLAGS: -g -Wall -O0 -std=gnu99
/*
extern void testfn(void);
*/
import "C"
func main() {
C.testfn()
}