mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
10 lines
140 B
C
10 lines
140 B
C
|
int (*func_p) (void);
|
||
|
extern int func (void);
|
||
|
|
||
|
void
|
||
|
foo (void)
|
||
|
{
|
||
|
if (func_p != &func || func_p () != 0xbadbeef)
|
||
|
__builtin_abort ();
|
||
|
}
|