aboutsummaryrefslogtreecommitdiff
path: root/libexec/rtld-aout/i386/md-static-funcs.c
blob: 47416856e4e96b0bff1a6fbbbd9fe276bbd6aee8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 *	$Id: md-static-funcs.c,v 1.2 1993/12/08 10:14:44 pk 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;
}