Sign in
gnu
/
binutils-gdb
/
ae66a8f19ef6bf2dc7369cf26073f34ddf7c175b
/
.
/
gold
/
testsuite
/
weak_as_needed_a.c
blob: 2e4ff8f22805794565732a41ef809292b4282dce [
file
] [
log
] [
blame
]
extern
void
bar
(
void
)
__attribute__
((
weak
));
extern
void
t4
(
void
);
void
foo
(
void
);
void
foo
(
void
)
{
bar
();
t4
();
}