mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
16 lines
221 B
C
16 lines
221 B
C
#include <stdio.h>
|
|
|
|
int foo[1];
|
|
int bar[2];
|
|
|
|
extern int *foo_p (void);
|
|
extern int *bar_p (void);
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if (foo[0] == 0 && foo == foo_p () && bar[0] == 0 && bar == bar_p ())
|
|
printf ("PASS\n");
|
|
return 0;
|
|
}
|