summaryrefslogtreecommitdiff
path: root/sys/arch/i386/include
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2019-04-10 04:17:38 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2019-04-10 04:17:38 +0000
commit8f0c1aa9fd0ce5d319af8590f3da4e11d36119ac (patch)
tree623711690bbd522dd6a546a3a7a25db4ca835639 /sys/arch/i386/include
parent11a564e909360219908f5872d7b84a175d37875e (diff)
change marks[] array to uint64_t, so the code can track full 64-bit
details from the ELF header instead of faking it. Proposal from mlarkin, tested on most architectures already
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r--sys/arch/i386/include/loadfile_machdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/loadfile_machdep.h b/sys/arch/i386/include/loadfile_machdep.h
index 55ddc9b4e00..a0507b00024 100644
--- a/sys/arch/i386/include/loadfile_machdep.h
+++ b/sys/arch/i386/include/loadfile_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: loadfile_machdep.h,v 1.7 2015/07/17 20:44:38 miod Exp $ */
+/* $OpenBSD: loadfile_machdep.h,v 1.8 2019/04/10 04:17:35 deraadt Exp $ */
/* $NetBSD: loadfile_machdep.h,v 1.1 1999/04/29 03:17:12 tsubai Exp $ */
/*-
@@ -52,4 +52,4 @@
#define ALLOC(a) alloc(a)
#define FREE(a, b) free(a, b)
-void run_loadfile(u_long *, int);
+void run_loadfile(uint64_t *, int);