binutils-gdb/ld/testsuite/ld-undefined/undefined.c
Ian Lance Taylor 738844c1f1 * ld-undefined/undefined.exp: New test, to check reporting of
undefined symbols.
	* ld-undefined/undefined.c: New file.
1995-07-14 17:11:53 +00:00

11 lines
189 B
C

/* This file is used to test the linker's reporting of undefined
symbols. */
extern int this_function_is_not_defined ();
int
function ()
{
return this_function_is_not_defined ();
}