repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
libexec
/
ld.aout_so
/
arch
/
i386
/
md-static-funcs.c
blob
5847a9aa180964154c0be2b9d75c60c09470648a
1
/* $NetBSD$ */
2
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
8
static void
9
md_relocate_simple
(
r
,
relocation
,
addr
)
10
struct
relocation_info
*
r
;
11
long
relocation
;
12
char
*
addr
;
13
{
14
if
(
r
->
r_relative
)
15
*(
long
*)
addr
+=
relocation
;
16
}
17