mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 03:29:50 +00:00
13 lines
149 B
C
13 lines
149 B
C
#include <stdio.h>
|
|
|
|
int global_var;
|
|
extern void abort ();
|
|
|
|
int main(void)
|
|
{
|
|
if (global_var != 20)
|
|
abort ();
|
|
printf ("PASS\n");
|
|
return 0;
|
|
}
|