]> Cypherpunks.ru repositories - gostls13.git/blob - misc/cgo/test/testdata/issue8756/issue8756.go
5f6b7778ff6e234f15cdaa7ae40fcbfd64d4b182
[gostls13.git] / misc / cgo / test / testdata / issue8756 / issue8756.go
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 }