summaryrefslogtreecommitdiff
path: root/libexec/ld.so
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-05-14 21:09:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-05-14 21:09:48 +0000
commitb08fdf172ceb2b4232759cc33b0fa0119291c5ff (patch)
treeaaf67c08f6db7e27d0657901583f2373b801c61e /libexec/ld.so
parent9a301ac1613fe1bf706ff7c91b9aae66ad21dcf8 (diff)
use __mips64__
Diffstat (limited to 'libexec/ld.so')
-rw-r--r--libexec/ld.so/ldconfig/debug.c4
-rw-r--r--libexec/ld.so/ldconfig/prebind.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/libexec/ld.so/ldconfig/debug.c b/libexec/ld.so/ldconfig/debug.c
index 34d33daf7e9..76b20344433 100644
--- a/libexec/ld.so/ldconfig/debug.c
+++ b/libexec/ld.so/ldconfig/debug.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: debug.c,v 1.2 2006/05/13 05:58:42 deraadt Exp $ */
+/* $OpenBSD: debug.c,v 1.3 2006/05/14 21:09:47 deraadt Exp $ */
/*
* Copyright (c) 2006 Dale Rahn <drahn@dalerahn.com>
*
@@ -31,7 +31,7 @@
#include "resolve.h"
#include "link.h"
#include "sod.h"
-#ifndef __mips64
+#ifndef __mips64__
#include "machine/reloc.h"
#endif
#include "prebind.h"
diff --git a/libexec/ld.so/ldconfig/prebind.c b/libexec/ld.so/ldconfig/prebind.c
index f8064ad0b98..87af5fa02cb 100644
--- a/libexec/ld.so/ldconfig/prebind.c
+++ b/libexec/ld.so/ldconfig/prebind.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: prebind.c,v 1.3 2006/05/13 16:33:40 deraadt Exp $ */
+/* $OpenBSD: prebind.c,v 1.4 2006/05/14 21:09:47 deraadt Exp $ */
/*
* Copyright (c) 2006 Dale Rahn <drahn@dalerahn.com>
*
@@ -32,7 +32,7 @@
#include "resolve.h"
#include "link.h"
#include "sod.h"
-#ifndef __mips64
+#ifndef __mips64__
#include "machine/reloc.h"
#endif
#include "prebind.h"
@@ -59,7 +59,7 @@ char *shstrtab;
#ifdef __i386__
#define RELOC_JMP_SLOT RELOC_JUMP_SLOT
#endif
-#ifdef __mips64
+#ifdef __mips64__
#define RELOC_JMP_SLOT 0 /* XXX mips64 doesnt have PLT reloc */
#endif
/* powerpc uses RELOC_JMP_SLOT */