* hppa-dis.c (print_insn_hppa): Change condition args to use
[deliverable/binutils-gdb.git] / ld / testsuite / ld-empic / runtest2.c
CommitLineData
252b5132
RH
1/* Second C source file for actual execution test. */
2
3int k;
4extern int i;
5extern int j;
6extern char small_buf[];
7extern char *small_pointer;
8
9extern int chkstr ();
10
11int
12bar (n)
13 int n;
14{
15 int r;
16
17 if (i != 1
18 || j != 0
19 || ! chkstr (small_buf, 4)
20 || ! chkstr (small_pointer, 4))
21 return k + 1;
22
23 r = k;
24 k = n;
25 return r;
26}
This page took 0.028421 seconds and 4 git commands to generate.