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/installboot/i386_nlist.c | |
parent | 7d55deb7ff589c6baf8ca1e02c3b6a76b52265c1 (diff) |
Use <elf.h> instead of <elf_abi.h>
ok jasper@, jca@, deraadt@
Diffstat (limited to 'usr.sbin/installboot/i386_nlist.c')
-rw-r--r-- | usr.sbin/installboot/i386_nlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
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> |