summaryrefslogtreecommitdiff
path: root/libgo/misc/cgo/fortran/fortran.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/misc/cgo/fortran/fortran.go')
-rw-r--r--libgo/misc/cgo/fortran/fortran.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/libgo/misc/cgo/fortran/fortran.go b/libgo/misc/cgo/fortran/fortran.go
new file mode 100644
index 00000000000..0079b535d94
--- /dev/null
+++ b/libgo/misc/cgo/fortran/fortran.go
@@ -0,0 +1,12 @@
+// Copyright 2016 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package fortran
+
+// int the_answer();
+import "C"
+
+func TheAnswer() int {
+ return int(C.the_answer())
+}