diff options
| author | Mark Murray <markm@FreeBSD.org> | 2001-12-03 00:00:22 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2001-12-03 00:00:22 +0000 |
| commit | 7f1afe0e0e14be65087180541d9278dd8cf76dfb (patch) | |
| tree | 42babf70bcc915e2003d0ccf22fc35a813b53ebb /usr.bin | |
| parent | 546c7f6629128aca1d1eb1e003440c704f5caf01 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/brandelf/brandelf.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/usr.bin/brandelf/brandelf.c b/usr.bin/brandelf/brandelf.c index dbbacc469f885..451dcd3c530b2 100644 --- a/usr.bin/brandelf/brandelf.c +++ b/usr.bin/brandelf/brandelf.c @@ -27,25 +27,24 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); #include <sys/types.h> #include <sys/elf_common.h> +#include <sys/errno.h> +#include <err.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <sys/errno.h> -#include <err.h> static int elftype(const char *); static const char *iselftype(int); static void printelftypes(void); -static void usage __P((void)); +static void usage(void); struct ELFtypes { const char *str; @@ -164,7 +163,7 @@ fail: } static void -usage() +usage(void) { fprintf(stderr, "usage: brandelf [-f ELF ABI number] [-v] [-l] [-t string] file ...\n"); exit(1); @@ -197,7 +196,7 @@ elftype(const char *elfstrtype) } static void -printelftypes() +printelftypes(void) { size_t elfwalk; |
