mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
14 lines
196 B
C
14 lines
196 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern unsigned int foo (void);
|
||
|
|
||
|
__attribute__((visibility("hidden"))) unsigned int var = 0xdeadbeef;
|
||
|
|
||
|
int main (void)
|
||
|
{
|
||
|
if (var == foo ())
|
||
|
puts ("PASS");
|
||
|
|
||
|
return 0;
|
||
|
}
|