mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 21:01:18 +01: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;
|
|
}
|