mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	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.
		
			
				
	
	
		
			20 lines
		
	
	
		
			219 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			219 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <stdio.h>
 | 
						|
 | 
						|
extern int preload (int);
 | 
						|
 | 
						|
int
 | 
						|
main (void)
 | 
						|
{
 | 
						|
  int res = preload (42);
 | 
						|
 | 
						|
  printf ("preload (42) = %d, %s\n", res, res == 92 ? "ok" : "wrong");
 | 
						|
 | 
						|
  return res != 92;
 | 
						|
}
 | 
						|
 | 
						|
int
 | 
						|
foo (int a)
 | 
						|
{
 | 
						|
  return a;
 | 
						|
}
 |