Sign in
go
/
go
/
52078fa477a0a8a8440ca40d64850730e2cf27f8
/
.
/
misc
/
cgo
/
test
/
testdata
/
issue8756
/
issue8756.go
blob: 5f6b7778ff6e234f15cdaa7ae40fcbfd64d4b182 [
file
] [
log
] [
blame
]
package issue8756
/*
#cgo LDFLAGS: -lm
#include <math.h>
*/
import "C"
func Pow() {
C.pow(1, 2)
}