diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2017-10-27 08:40:16 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2017-10-27 08:40:16 +0000 |
commit | dda6854f76d46f60251b8c540edb1bfcfd49a4fb (patch) | |
tree | 3c386c1c6d921be938b46e90461a9ce1c39fd401 /sys/ddb/db_dwarf.c | |
parent | 50dddea8dc8e7bcc9d51d18c6ecc5e4ed81df1ca (diff) |
Use <elf.h> in !_KERNEL code path.
Diffstat (limited to 'sys/ddb/db_dwarf.c')
-rw-r--r-- | sys/ddb/db_dwarf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_dwarf.c b/sys/ddb/db_dwarf.c index 5000479fac2..767afbc0bc4 100644 --- a/sys/ddb/db_dwarf.c +++ b/sys/ddb/db_dwarf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_dwarf.c,v 1.6 2017/09/08 05:36:52 deraadt Exp $ */ +/* $OpenBSD: db_dwarf.c,v 1.7 2017/10/27 08:40:15 mpi Exp $ */ /* * Copyright (c) 2014 Matthew Dempsky <matthew@dempsky.org> * @@ -396,7 +396,7 @@ next: #include <sys/endian.h> #include <sys/mman.h> #include <sys/stat.h> -#include <elf_abi.h> +#include <elf.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> |