1993-11-03 23:41:59 +00:00
|
|
|
/*
|
1999-08-28 00:22:10 +00:00
|
|
|
* $FreeBSD$
|
1994-02-13 20:43:13 +00:00
|
|
|
*
|
1993-11-03 23:41:59 +00:00
|
|
|
* Called by ld.so when onanating.
|
|
|
|
* This *must* be a static function, so it is not called through a jmpslot.
|
|
|
|
*/
|
1994-02-13 20:43:13 +00:00
|
|
|
|
1996-10-01 01:28:10 +00:00
|
|
|
static void
|
1993-11-03 23:41:59 +00:00
|
|
|
md_relocate_simple(r, relocation, addr)
|
|
|
|
struct relocation_info *r;
|
|
|
|
long relocation;
|
|
|
|
char *addr;
|
|
|
|
{
|
1996-10-01 01:28:10 +00:00
|
|
|
if (r->r_relative)
|
|
|
|
*(long *)addr += relocation;
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|