summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/ld/i386/md-static-funcs.c
blob: 8a672ed9db870f51ca8ae44ef31617e0b0509f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 *	$Id: md-static-funcs.c,v 1.3 1995/11/02 18:47:55 nate Exp $
 *
 * 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;
}

OpenPOWER on IntegriCloud