• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2016 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package issue8756
6
7/*
8#cgo !darwin LDFLAGS: -lm
9#include <math.h>
10*/
11import "C"
12
13func Pow() {
14	C.pow(1, 2)
15}
16