mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
19 lines
163 B
C
19 lines
163 B
C
|
extern void a(void);
|
||
|
extern void b(void);
|
||
|
|
||
|
void dummy (void)
|
||
|
{
|
||
|
a();
|
||
|
}
|
||
|
int
|
||
|
compare (void (*f)(void))
|
||
|
{
|
||
|
return a == f;
|
||
|
}
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
b ();
|
||
|
return 0;
|
||
|
}
|