summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1996-05-02 16:08:53 +0000
committerJohn Polstra <jdp@FreeBSD.org>1996-05-02 16:08:53 +0000
commit658bcc5f0e5ced4ee60009f0f6de037aedf97a12 (patch)
tree78e713c829c591ca35cacd193e8e17234ef3b73e /gnu/usr.bin
parentb2f01a7ab60adb216f907b1d46594ff48738cb5e (diff)
Notes
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/ld/i386/md-static-funcs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/usr.bin/ld/i386/md-static-funcs.c b/gnu/usr.bin/ld/i386/md-static-funcs.c
index 47416856e4e96..ff06e66b03011 100644
--- a/gnu/usr.bin/ld/i386/md-static-funcs.c
+++ b/gnu/usr.bin/ld/i386/md-static-funcs.c
@@ -1,17 +1,16 @@
/*
- * $Id: md-static-funcs.c,v 1.2 1993/12/08 10:14:44 pk Exp $
+ * $Id: md-static-funcs.c,v 1.3 1995/11/02 18:47:55 nate Exp $
*
* Called by ld.so when onanating.
* This *must* be a static function, so it is not called through a jmpslot.
*/
-static void
+static inline void
md_relocate_simple(r, relocation, addr)
struct relocation_info *r;
long relocation;
char *addr;
{
-if (r->r_relative)
*(long *)addr += relocation;
}