mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-18 02:30:48 +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");
|
||
|
}
|