mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
15 lines
142 B
C
15 lines
142 B
C
#include <stdio.h>
|
|
|
|
extern void *h (void);
|
|
extern void *g (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
|
|
if (h () == g ())
|
|
printf ("OK\n");
|
|
|
|
return 0;
|
|
}
|