diff options
author | obrien <obrien@FreeBSD.org> | 2001-05-02 23:56:21 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-05-02 23:56:21 +0000 |
commit | 538e761e025ee84b3b100b7c0eabceaa5b550b49 (patch) | |
tree | 212c800046bcfdedaa0f36777e0d9479206e0c43 /usr.bin/gprof | |
parent | d917f606f3edba70f558ca5105b6d31f1d87c910 (diff) | |
download | FreeBSD-src-538e761e025ee84b3b100b7c0eabceaa5b550b49.zip FreeBSD-src-538e761e025ee84b3b100b7c0eabceaa5b550b49.tar.gz |
* include/elf.h has been repo copied to include/elf-hints.h, and it no
longer includes machine/elf.h.
* consumers of elf.h now use the minimalist elf header possible.
This change is motivated by Binutils 2.11.0 and too much clashing over
our base elf headers and the Binutils elf headers.
Diffstat (limited to 'usr.bin/gprof')
-rw-r--r-- | usr.bin/gprof/elf.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/gprof/elf.c b/usr.bin/gprof/elf.c index 359d76e..ed1aeb1 100644 --- a/usr.bin/gprof/elf.c +++ b/usr.bin/gprof/elf.c @@ -1,8 +1,13 @@ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif /* not lint */ + #include <sys/types.h> #include <sys/mman.h> #include <sys/stat.h> +#include <machine/elf.h> -#include <elf.h> #include <err.h> #include <fcntl.h> #include <string.h> |