mirror of
https://github.com/golang/go
synced 2024-11-06 06:26:13 -07:00
12 lines
101 B
Go
12 lines
101 B
Go
|
package issue8756
|
||
|
|
||
|
/*
|
||
|
#cgo LDFLAGS: -lm
|
||
|
#include <math.h>
|
||
|
*/
|
||
|
import "C"
|
||
|
|
||
|
func Pow() {
|
||
|
C.pow(1, 2)
|
||
|
}
|