summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2003-12-16 23:32:25 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2003-12-16 23:32:25 +0000
commitdda8fccd24841b87fbea4fa151c3c151ef2a368a (patch)
treed7c801a5a305a3669477aadbde1d9339fd807846 /usr.bin
parenteca7940990060027dc22bcdd5c045788da409145 (diff)
do not implement -L (print copyright) with SMALL
186 bytes more bytes we can waste elsewhere
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/compress/main.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/compress/main.c b/usr.bin/compress/main.c
index e7aea90708f..d1ffb407076 100644
--- a/usr.bin/compress/main.c
+++ b/usr.bin/compress/main.c
@@ -1,9 +1,11 @@
-/* $OpenBSD: main.c,v 1.51 2003/12/16 23:23:50 henning Exp $ */
+/* $OpenBSD: main.c,v 1.52 2003/12/16 23:32:24 henning Exp $ */
+#ifndef SMALL
static const char copyright[] =
"@(#) Copyright (c) 1992, 1993\n\
The Regents of the University of California. All rights reserved.\n"
"Copyright (c) 1997-2002 Michael Shalayeff\n";
+#endif
#ifndef SMALL
static const char license[] =
@@ -34,7 +36,7 @@ static const char license[] =
#endif /* SMALL */
#ifndef SMALL
-static const char main_rcsid[] = "$OpenBSD: main.c,v 1.51 2003/12/16 23:23:50 henning Exp $";
+static const char main_rcsid[] = "$OpenBSD: main.c,v 1.52 2003/12/16 23:32:24 henning Exp $";
#endif
#include <sys/param.h>
@@ -281,9 +283,9 @@ main(int argc, char *argv[])
case 'v':
verbose++;
break;
+#ifndef SMALL
case 'L':
fputs(copyright, stderr);
-#ifndef SMALL
fputs(license, stderr);
#endif
exit (0);