diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2017-10-27 16:47:09 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2017-10-27 16:47:09 +0000 |
commit | 52aefd9dcb7993d8cd94db28248ae4c5e9629325 (patch) | |
tree | 86b2dbe22105735bf277b5d4f69267de4a3b5063 /usr.sbin | |
parent | 7d55deb7ff589c6baf8ca1e02c3b6a76b52265c1 (diff) |
Use <elf.h> instead of <elf_abi.h>
ok jasper@, jca@, deraadt@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/installboot/i386_installboot.c | 4 | ||||
-rw-r--r-- | usr.sbin/installboot/i386_nlist.c | 4 | ||||
-rw-r--r-- | usr.sbin/kvm_mkdb/nlist.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/installboot/i386_installboot.c b/usr.sbin/installboot/i386_installboot.c index 10acf8bef32..2f55a410001 100644 --- a/usr.sbin/installboot/i386_installboot.c +++ b/usr.sbin/installboot/i386_installboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i386_installboot.c,v 1.30 2017/06/04 13:57:29 naddy Exp $ */ +/* $OpenBSD: i386_installboot.c,v 1.31 2017/10/27 16:47:08 mpi Exp $ */ /* $NetBSD: installboot.c,v 1.5 1995/11/17 23:23:50 gwr Exp $ */ /* @@ -54,7 +54,7 @@ #include <machine/cpu.h> #include <machine/biosvar.h> -#include <elf_abi.h> +#include <elf.h> #include <err.h> #include <errno.h> #include <fcntl.h> diff --git a/usr.sbin/installboot/i386_nlist.c b/usr.sbin/installboot/i386_nlist.c index f508d74d94e..d4daf443204 100644 --- a/usr.sbin/installboot/i386_nlist.c +++ b/usr.sbin/installboot/i386_nlist.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i386_nlist.c,v 1.5 2015/10/19 19:22:32 krw Exp $ */ +/* $OpenBSD: i386_nlist.c,v 1.6 2017/10/27 16:47:08 mpi Exp $ */ /* * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -34,7 +34,7 @@ #include <sys/mman.h> #include <sys/stat.h> -#include <elf_abi.h> +#include <elf.h> #include <errno.h> #include <fcntl.h> #include <nlist.h> diff --git a/usr.sbin/kvm_mkdb/nlist.c b/usr.sbin/kvm_mkdb/nlist.c index 18f895a97b0..4c59441cf63 100644 --- a/usr.sbin/kvm_mkdb/nlist.c +++ b/usr.sbin/kvm_mkdb/nlist.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nlist.c,v 1.50 2016/09/10 05:48:18 jsg Exp $ */ +/* $OpenBSD: nlist.c,v 1.51 2017/10/27 16:47:08 mpi Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -50,7 +50,7 @@ #include <sys/file.h> #include <sys/sysctl.h> -#include <elf_abi.h> +#include <elf.h> typedef struct nlist NLIST; #define _strx n_un.n_strx |