mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +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");
|
|
}
|