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

18 lines
361 B
C

/* $NetBSD: md-static-funcs.c,v 1.3 1998/10/19 03:09:33 matt 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;
}