mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-17 13:31:33 +00:00
18 lines
124 B
C
18 lines
124 B
C
#include <stdio.h>
|
|
|
|
extern void y (void);
|
|
|
|
void
|
|
x (void)
|
|
{
|
|
printf ("PASS\n");
|
|
}
|
|
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
y ();
|
|
return 0;
|
|
}
|