mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-20 02:29:11 +00:00
12 lines
176 B
C
12 lines
176 B
C
#include <stdio.h>
|
|
|
|
extern void abort (void);
|
|
extern int foo (int) __attribute__ ((visibility("hidden")));
|
|
|
|
int bar()
|
|
{
|
|
if (foo (5) != 5)
|
|
abort ();
|
|
printf("PASS\n");
|
|
}
|