mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00: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;
|
||
|
}
|