forked from Imagelibrary/binutils-gdb
This test is UNSUPPORTED on arm64 with GCC 15 (which defaults to -std=gnu23) because it now prototypes "no arguments". PR ld/32546 * ld-elfvers/vers7.c: Fix function definitions for C23.
14 lines
160 B
C
14 lines
160 B
C
/*
|
|
* Test program that goes with test7.so
|
|
*/
|
|
|
|
extern int hide_a(int e);
|
|
extern int show_b(int e);
|
|
|
|
int
|
|
main()
|
|
{
|
|
return hide_a(1) + show_b(1);
|
|
return 0;
|
|
}
|