switch inferior/thread before calling target methods
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.go / handcall.go
CommitLineData
a766d390
DE
1package main
2
3func add (a,b int) (int) {
4 return a + b
5}
6
7func sub (a,b int) (int) {
8 return a - b
9}
10
11var v_int int
12
13func main () {
04ff1e61 14 v_int = 42
a766d390 15}
This page took 1.060227 seconds and 4 git commands to generate.