mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
25 lines
343 B
C
25 lines
343 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int foo1;
|
||
|
int foo2;
|
||
|
|
||
|
extern void xxx1 (void);
|
||
|
extern void xxx2 (void);
|
||
|
|
||
|
void
|
||
|
bar (int x)
|
||
|
{
|
||
|
if (foo1 == 1)
|
||
|
printf ("bar OK1\n");
|
||
|
else if (foo1 == 0)
|
||
|
printf ("bar OK2\n");
|
||
|
if (foo2 == 1)
|
||
|
printf ("bar OK3\n");
|
||
|
else if (foo2 == 0)
|
||
|
printf ("bar OK4\n");
|
||
|
foo1 = -1;
|
||
|
foo2 = -1;
|
||
|
xxx1 ();
|
||
|
xxx2 ();
|
||
|
}
|