From 79f407f91ed234fb389cb9e093b097f733d9226b Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sat, 13 Apr 2002 12:20:51 +0000 Subject: [PATCH] Fix a minor lint warning. --- usr.bin/make/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index f99c0ba52328..b336646916db 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -39,9 +39,11 @@ */ #ifndef lint +#if 0 static char copyright[] = "@(#) Copyright (c) 1988, 1989, 1990, 1993\n\ The Regents of the University of California. All rights reserved.\n"; +#endif #endif /* not lint */ #include __FBSDID("$FreeBSD$");