summaryrefslogtreecommitdiff
path: root/usr.bin/nm/elf.c
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2017-10-27 16:47:09 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2017-10-27 16:47:09 +0000
commit52aefd9dcb7993d8cd94db28248ae4c5e9629325 (patch)
tree86b2dbe22105735bf277b5d4f69267de4a3b5063 /usr.bin/nm/elf.c
parent7d55deb7ff589c6baf8ca1e02c3b6a76b52265c1 (diff)
Use <elf.h> instead of <elf_abi.h>
ok jasper@, jca@, deraadt@
Diffstat (limited to 'usr.bin/nm/elf.c')
-rw-r--r--usr.bin/nm/elf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/nm/elf.c b/usr.bin/nm/elf.c
index 2c7676b1b13..5f2d14b27f3 100644
--- a/usr.bin/nm/elf.c
+++ b/usr.bin/nm/elf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: elf.c,v 1.34 2015/12/09 19:28:34 mmcc Exp $ */
+/* $OpenBSD: elf.c,v 1.35 2017/10/27 16:47:08 mpi Exp $ */
/*
* Copyright (c) 2003 Michael Shalayeff
@@ -29,7 +29,7 @@
#include <sys/mman.h>
#include <unistd.h>
#include <a.out.h>
-#include <elf_abi.h>
+#include <elf.h>
#include <errno.h>
#include <err.h>
#include <stdint.h>