blob: c156eee51bf16ddf5dcfcef3fb74d145fbaf4172 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $OpenBSD: md-static-funcs.c,v 1.2 2002/07/19 19:28:12 marc Exp $ */
/* $NetBSD: md-static-funcs.c,v 1.1 1995/10/19 13:10:17 ragge 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(struct relocation_info *r, long relocation, char *addr)
{
if (r->r_relative)
*(long *)addr += relocation;
}
|