diff options
author | archie <archie@FreeBSD.org> | 1998-12-06 22:58:23 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 1998-12-06 22:58:23 +0000 |
commit | 167c036e91fb24a62d627d16a2f3afa6d875c9e2 (patch) | |
tree | e40a696092a51458b052ff258b3700d51fc2ca09 /usr.bin/biff | |
parent | 3f56407712318be6faa0b98ad8db4b5a83ef4c93 (diff) | |
download | FreeBSD-src-167c036e91fb24a62d627d16a2f3afa6d875c9e2.zip FreeBSD-src-167c036e91fb24a62d627d16a2f3afa6d875c9e2.tar.gz |
Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).
Diffstat (limited to 'usr.bin/biff')
-rw-r--r-- | usr.bin/biff/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/biff/biff.c | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/biff/Makefile b/usr.bin/biff/Makefile index 81cb86b..db26fc4 100644 --- a/usr.bin/biff/Makefile +++ b/usr.bin/biff/Makefile @@ -1,5 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= biff +CFLAGS+=-Wall .include <bsd.prog.mk> diff --git a/usr.bin/biff/biff.c b/usr.bin/biff/biff.c index 52f5229..185d634 100644 --- a/usr.bin/biff/biff.c +++ b/usr.bin/biff/biff.c @@ -30,17 +30,17 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: biff.c,v 1.3 1997/06/23 06:45:38 charnier Exp $ + * $Id: biff.c,v 1.4 1997/12/29 00:08:50 alex Exp $ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1980, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)biff.c 8.1 (Berkeley) 6/6/93"; +static const char sccsid[] = "@(#)biff.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #include <sys/types.h> |