mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
3d91edb219
1999-01-20 Ulrich Drepper <drepper@cygnus.com> * elf/Makefile (tests): Add preloadtest. Add rules to build more test modules and the preloadtest binary. * elf/loadtest.c (TEST_ROUNDS): Increase to 1000. (testobjs): Add more modules. (tests): Add entries for new modules. * elf/preloadtest.c: New file. Test for LD_PRELOAD. * elf/testobj1.c: Add 'preload' function. * elf/testobj2.c: Likewise. * elf/testobj3.c: Likewise. * elf/testobj4.c: New file. * elf/testobj5.c: New file. * elf/testobj6.c: New file.
18 lines
151 B
C
18 lines
151 B
C
int
|
|
obj6func1 (int a __attribute__ ((unused)))
|
|
{
|
|
return 77;
|
|
}
|
|
|
|
int
|
|
obj6func2 (int a)
|
|
{
|
|
return foo (a) + 46;
|
|
}
|
|
|
|
int
|
|
preload (int a)
|
|
{
|
|
return a;
|
|
}
|