summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authormpi <mpi@openbsd.org>2017-10-27 16:47:08 +0000
committermpi <mpi@openbsd.org>2017-10-27 16:47:08 +0000
commite9d517b1e47ed28b70d01d46036c19aeb960f8b0 (patch)
tree410eef12e15ecaa8d329631851666a6b13ab7a0e /lib/libc
parentsync (diff)
downloadwireguard-openbsd-e9d517b1e47ed28b70d01d46036c19aeb960f8b0.tar.xz
wireguard-openbsd-e9d517b1e47ed28b70d01d46036c19aeb960f8b0.zip
Use <elf.h> instead of <elf_abi.h>
ok jasper@, jca@, deraadt@
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/gen/nlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/nlist.c b/lib/libc/gen/nlist.c
index f4dae6eb32c..78db9926728 100644
--- a/lib/libc/gen/nlist.c
+++ b/lib/libc/gen/nlist.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nlist.c,v 1.68 2016/12/25 20:30:41 krw Exp $ */
+/* $OpenBSD: nlist.c,v 1.69 2017/10/27 16:47:08 mpi Exp $ */
/*
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
@@ -40,7 +40,7 @@
#include <string.h>
#include <unistd.h>
#include <a.out.h> /* pulls in nlist.h */
-#include <elf_abi.h>
+#include <elf.h>
#define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))