fe60f7648c
1999-01-21 Ulrich Drepper <drepper@cygnus.com> * elf/Makefile: Change rule to make test module so that they are compiled using -fPIC. * elf/testobj1.c: Add missing prototype. * elf/testobj1_1.c: Likewise. * elf/testobj2.c: Likewise. * elf/testobj3.c: Likewise. * elf/testobj4.c: Likewise. * elf/testobj5.c: Likewise. * elf/testobj6.c: Likewise.
8 lines
84 B
C
8 lines
84 B
C
extern int obj1func2 (int);
|
|
|
|
int
|
|
obj1func1 (int a)
|
|
{
|
|
return 42 + obj1func2 (a);
|
|
}
|