binutils-gdb/ld/testsuite/ld-elf/pr26094-1b.c
Nick Clifton 928055a369 Fix a compile time warning in the linker testsuite when compiling using clang.
* testsuite/ld-elf/pr26094-1b.c (main): Change return type to
	int.
2020-06-11 09:27:41 +01:00

7 lines
60 B
C

extern void *foo();
int main (void)
{
foo(); return 0;
}