Use FreeBSD's ELF headers instead of the elfdefinitions.h header which

comes with elftoolchain. This version of libelf doesn't need to be
portable; using FreeBSD's own ELF headers will avoid conflicts and
make integration easier.
This commit is contained in:
Kai Wang 2014-01-16 21:47:27 +00:00
parent 7c4a6907ee
commit 4e5c697507

View File

@ -30,8 +30,8 @@
#define _LIBELF_H_
#include <sys/types.h>
#include <elfdefinitions.h>
#include <sys/elf32.h>
#include <sys/elf64.h>
/* Library private data structures */
typedef struct _Elf Elf;