From 4dd5ff1fced678b1865ddf1e656e823b6ada7f88 Mon Sep 17 00:00:00 2001 From: Suleiman Souhlal Date: Tue, 25 Jan 2005 14:22:20 +0000 Subject: [PATCH] - Remove useless includes - Add WARNS?= 6 to Makefile Submitted by: Liam J. Foy Approved by: grehan (mentor) --- usr.bin/logname/Makefile | 1 + usr.bin/logname/logname.c | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/usr.bin/logname/Makefile b/usr.bin/logname/Makefile index 875df2c0abf6..4e910ce73297 100644 --- a/usr.bin/logname/Makefile +++ b/usr.bin/logname/Makefile @@ -2,5 +2,6 @@ # $FreeBSD$ PROG= logname +WARNS?= 6 .include diff --git a/usr.bin/logname/logname.c b/usr.bin/logname/logname.c index 05faf7612416..8f98b8a6dd5e 100644 --- a/usr.bin/logname/logname.c +++ b/usr.bin/logname/logname.c @@ -44,11 +44,9 @@ static const char sccsid[] = "@(#)logname.c 8.2 (Berkeley) 4/3/94"; __FBSDID("$FreeBSD$"); #include -#include #include #include #include -#include void usage(void);