mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-11 12:05:55 +00: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;
|
||
|
}
|