From 167c036e91fb24a62d627d16a2f3afa6d875c9e2 Mon Sep 17 00:00:00 2001 From: archie Date: Sun, 6 Dec 1998 22:58:23 +0000 Subject: Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]). --- usr.bin/dirname/Makefile | 1 + usr.bin/dirname/dirname.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'usr.bin/dirname') diff --git a/usr.bin/dirname/Makefile b/usr.bin/dirname/Makefile index 76b4089..0350db6 100644 --- a/usr.bin/dirname/Makefile +++ b/usr.bin/dirname/Makefile @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= dirname +CFLAGS+=-Wall NOMAN= noman .include diff --git a/usr.bin/dirname/dirname.c b/usr.bin/dirname/dirname.c index c6ca326..056dc51 100644 --- a/usr.bin/dirname/dirname.c +++ b/usr.bin/dirname/dirname.c @@ -32,13 +32,13 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1991, 1993, 1994\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)dirname.c 8.4 (Berkeley) 5/4/95"; +static const char sccsid[] = "@(#)dirname.c 8.4 (Berkeley) 5/4/95"; #endif /* not lint */ #include -- cgit v1.1