ld: Update function prototypes for compilers defaulting to -std=gnu23
[binutils-gdb.git] / ld / testsuite / ld-elf / indirect5b.c
blob7659971c59fd3de9bc292b2804219c4da239cb9b
1 #include <stdio.h>
3 void
4 bar (void)
6 printf ("bar\n");
9 void
10 foo (long *x)
12 (void) x;
13 printf ("foo\n");
14 bar ();