Style fixes.

Use __FBSDID().
Be consistent WRT ANSI use.

OK'ed by:	obrien
This commit is contained in:
Mark Murray 2001-12-03 00:00:22 +00:00
parent 546c7f6629
commit 7f1afe0e0e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87248

View File

@ -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 @@ main(int argc, char **argv)
}
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;