NetBSD-5.0.2/libexec/ld.aout_so/arch/m68k/md-static-funcs.c

Compare this file to the similar file:
Show the results in this format:

/*	$NetBSD: md-static-funcs.c,v 1.4 1998/01/05 22:00:38 cgd 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 */
	}
}