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