mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-21 05:07:54 +01:00
18 lines
190 B
C
18 lines
190 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int foo;
|
|
void bar (void);
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if (foo != 0)
|
|
abort ();
|
|
foo = 200;
|
|
bar ();
|
|
if (foo == 200)
|
|
printf ("PASS\n");
|
|
return 0;
|
|
}
|