Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern prototype netbsd_elf64_probe() ifdef EXEC_ELF64, no...



details:   https://anonhg.NetBSD.org/src/rev/36f51d565bdf
branches:  trunk
changeset: 499723:36f51d565bdf
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Mon Nov 27 18:04:32 2000 +0000

description:
prototype netbsd_elf64_probe() ifdef EXEC_ELF64, not for if !defined(EXEC_ELF32)

diffstat:

 sys/kern/exec_conf.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 4ed8c1d0e425 -r 36f51d565bdf sys/kern/exec_conf.c
--- a/sys/kern/exec_conf.c      Mon Nov 27 17:36:19 2000 +0000
+++ b/sys/kern/exec_conf.c      Mon Nov 27 18:04:32 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec_conf.c,v 1.46 2000/11/27 17:21:22 jdolecek Exp $  */
+/*     $NetBSD: exec_conf.c,v 1.47 2000/11/27 18:04:32 jdolecek Exp $  */
 
 /*
  * Copyright (c) 1993, 1994 Christopher G. Demetriou
@@ -74,7 +74,8 @@
 #ifdef EXEC_ELF32
 int ELF32NAME2(netbsd,probe)(struct proc *, struct exec_package *,
     void *, char *, vaddr_t *);
-#else /* EXEC_ELF64 */
+#endif
+#ifdef EXEC_ELF64
 int ELF64NAME2(netbsd,probe)(struct proc *, struct exec_package *,
     void *, char *, vaddr_t *);
 #endif



Home | Main Index | Thread Index | Old Index