Sync usage with man page.
[netbsd-mini2440.git] / libexec / ld.aout_so / arch / m68k / md-static-funcs.c
blob2dbb36ccce90e9156ca85e04b7f6608655705db6
1 /* $NetBSD$ */
3 /*
4 * Called by ld.so when onanating.
5 * This *must* be a static function, so it is not called through a jmpslot.
6 */
7 static void
8 md_relocate_simple(r, relocation, addr)
9 struct relocation_info *r;
10 long relocation;
11 char *addr;
13 if (r->r_relative) {
14 *(long *)addr += relocation;
15 _cachectl (addr, 4); /* maintain cache coherency */