mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
16 lines
202 B
C
16 lines
202 B
C
#include <stdio.h>
|
|
|
|
void foo (void) __attribute__ ((noinline, visibility ("hidden")));
|
|
|
|
void foo (void) {
|
|
printf("foo called.\n");
|
|
}
|
|
|
|
void bar(void);
|
|
|
|
int main(void) {
|
|
foo();
|
|
bar();
|
|
return 0;
|
|
}
|