mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-22 01:29:13 +00:00
15 lines
194 B
C
15 lines
194 B
C
#include <stdio.h>
|
|
|
|
int foo = 1;
|
|
|
|
extern int *bar (void);
|
|
extern int bar_ifunc (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
if (bar () == &foo && bar_ifunc () == 0xbadbeef)
|
|
printf ("PASS\n");
|
|
return 0;
|
|
}
|