mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 03:52:59 +00:00
24 lines
280 B
C
24 lines
280 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern int (*func_p) (void);
|
||
|
extern int func (void);
|
||
|
extern void foo (void);
|
||
|
|
||
|
|
||
|
void
|
||
|
bar (void)
|
||
|
{
|
||
|
if (func_p != &func || func_p () != 0xbadbeef)
|
||
|
__builtin_abort ();
|
||
|
}
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
func_p = &func;
|
||
|
foo ();
|
||
|
bar ();
|
||
|
printf ("PASS\n");
|
||
|
return 0;
|
||
|
}
|