Sign in
gnu
/
binutils-gdb
/
ae66a8f19ef6bf2dc7369cf26073f34ddf7c175b
/
.
/
gold
/
testsuite
/
defsym_test.c
blob: 0bf68b21b1e8f81b17137c8e31d8384039b2124b [
file
] [
log
] [
blame
]
#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
;
}