blob: c6944f332325e0976ec55db1f0e32dfff7e83a61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* $OpenBSD: md-static-funcs.c,v 1.2 1998/03/26 19:46:58 niklas 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;
_cachectl (addr, 4); /* maintain cache coherency */
}
}
|