gitlab.com/Raven-IO/raven-delve@v1.22.4/_fixtures/testvariablescgo/testvariablescgo.go (about)

     1  package main
     2  
     3  // #cgo CFLAGS: -g -Wall -O0 -std=gnu99
     4  /*
     5  extern void testfn(void);
     6  */
     7  import "C"
     8  
     9  func main() {
    10  	C.testfn()
    11  }