Deleted Added
full compact
26c26
< * $Id$
---
> * $Id: rtld_machdep.h,v 1.1 1999/04/09 00:28:43 jdp Exp $
35a36,43
> /* Fixup the jump slot at "where" to transfer control to "target". */
> #define reloc_jmpslot(where, target) \
> do { \
> dbg("reloc_jmpslot: *%p = %p", (void *)(where), \
> (void *)(target)); \
> (*(Elf_Addr *)(where) = (Elf_Addr)(target)); \
> } while (0)
>