mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 23:28:57 +00:00
18 lines
303 B
C
18 lines
303 B
C
/*
|
|
* $FreeBSD$
|
|
*
|
|
* Called by ld.so when onanating.
|
|
* This *must* be a static function, so it is not called through a jmpslot.
|
|
*/
|
|
|
|
static void
|
|
md_relocate_simple(r, relocation, addr)
|
|
struct relocation_info *r;
|
|
long relocation;
|
|
char *addr;
|
|
{
|
|
if (r->r_relative)
|
|
*(long *)addr += relocation;
|
|
}
|
|
|