manual copyright year range of various GDB files to add 2023
[binutils-gdb.git] / gold / testsuite / defsym_test.c
blob0bf68b21b1e8f81b17137c8e31d8384039b2124b
1 #include <stdio.h>
3 void foo (void) __attribute__ ((noinline, visibility ("hidden")));
5 void foo (void) {
6 printf("foo called.\n");
9 void bar(void);
11 int main(void) {
12 foo();
13 bar();
14 return 0;