github.com/epfl-dcsl/gotee@v0.0.0-20200909122901-014b35f5e5e9/misc/cgo/test/issue8756/issue8756.go (about)

     1  package issue8756
     2  
     3  /*
     4  #cgo LDFLAGS: -lm
     5  #include <math.h>
     6  */
     7  import "C"
     8  
     9  func Pow() {
    10  	C.pow(1, 2)
    11  }