freebsd-dev/gnu/usr.bin/ld/i386/md-static-funcs.c

18 lines
353 B
C
Raw Normal View History

1993-11-03 23:41:59 +00:00
/*
* $Id: md-static-funcs.c,v 1.3 1995/11/02 18:47:55 nate Exp $
*
1993-11-03 23:41:59 +00:00
* Called by ld.so when onanating.
* This *must* be a static function, so it is not called through a jmpslot.
*/
static void
1993-11-03 23:41:59 +00:00
md_relocate_simple(r, relocation, addr)
struct relocation_info *r;
long relocation;
char *addr;
{
if (r->r_relative)
*(long *)addr += relocation;
1993-11-03 23:41:59 +00:00
}