mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
13 lines
146 B
C
13 lines
146 B
C
#include <stdio.h>
|
|
|
|
extern int foo (void);
|
|
extern int bar (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
if (foo () == bar ())
|
|
printf ("PASS\n");
|
|
return 0;
|
|
}
|