repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
manual copyright year range of various GDB files to add 2023
[binutils-gdb.git]
/
gold
/
testsuite
/
defsym_test.c
blob
0bf68b21b1e8f81b17137c8e31d8384039b2124b
1
#include <stdio.h>
2
3
void
foo
(
void
)
__attribute__
((
noinline
,
visibility
(
"hidden"
)));
4
5
void
foo
(
void
) {
6
printf
(
"foo called.
\n
"
);
7
}
8
9
void
bar
(
void
);
10
11
int
main
(
void
) {
12
foo
();
13
bar
();
14
return
0
;
15
}