diff options
author | Ed Maste <emaste@FreeBSD.org> | 2016-11-16 16:39:51 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2016-11-16 16:39:51 +0000 |
commit | 69712279cccc820030b38ffd71bd5bc93ac7d5a7 (patch) | |
tree | d79cc4f9ef4bb5300d76fb89aaf5fbc35023a294 /usr.sbin/crunch/crunchide | |
parent | 41ddec83c128de0aea5838e78320287f619ce84b (diff) |
crunchide: remove obsolete a.out header and comment
crunchide(1) gained ELF support in r39172, and lost the unused a.out
and non-functional ECOFF suport in r281655.
Sponsored by: The FreeBSD Foundation
Notes
Notes:
svn path=/head/; revision=308734
Diffstat (limited to 'usr.sbin/crunch/crunchide')
-rw-r--r-- | usr.sbin/crunch/crunchide/crunchide.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/crunch/crunchide/crunchide.c b/usr.sbin/crunch/crunchide/crunchide.c index 8665a14a734e..b7eba3995173 100644 --- a/usr.sbin/crunch/crunchide/crunchide.c +++ b/usr.sbin/crunch/crunchide/crunchide.c @@ -26,7 +26,7 @@ * University of Maryland at College Park */ /* - * crunchide.c - tiptoes through an a.out symbol table, hiding all defined + * crunchide.c - tiptoes through a symbol table, hiding all defined * global symbols. Allows the user to supply a "keep list" of symbols * that are not to be hidden. This program relies on the use of the * linker's -dc flag to actually put global bss data into the file's @@ -73,7 +73,6 @@ __FBSDID("$FreeBSD$"); #include <stdlib.h> #include <string.h> #include <fcntl.h> -#include <a.out.h> #include "extern.h" |