mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
13 lines
136 B
C
13 lines
136 B
C
#include <stdio.h>
|
|
|
|
extern void foo(void);
|
|
extern int i;
|
|
|
|
int main()
|
|
{
|
|
foo();
|
|
if (i == 0x1234)
|
|
printf ("PASS\n");
|
|
return 0;
|
|
}
|