Initial creation of sourceware repository
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / jump.c
CommitLineData
c906108c
SS
1/* This program is used to test the "jump" command. There's nothing
2 particularly deep about the functionality nor names in here.
3 */
4
5static int square (x)
6 int x;
7{
8 return x*x;
9}
10
11
12main ()
13{
14 int i = 99;
15
16 i++;
17 i = square (i);
18 i--;
19}
This page took 0.023527 seconds and 4 git commands to generate.