mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 08:47:41 +01:00
10 lines
89 B
C
10 lines
89 B
C
#include <stdio.h>
|
|
|
|
int foo;
|
|
int
|
|
main ()
|
|
{
|
|
printf ("PASSED: %d\n", foo);
|
|
return 0;
|
|
}
|