mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-21 05:07:54 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29024 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
179 B
C
17 lines
179 B
C
#include <stdio.h>
|
|
|
|
int foo;
|
|
|
|
extern void xxx (void);
|
|
|
|
void
|
|
bar (int x)
|
|
{
|
|
if (foo == 1)
|
|
printf ("OK1\n");
|
|
else if (foo == 0)
|
|
printf ("OK2\n");
|
|
foo = -1;
|
|
xxx ();
|
|
}
|