aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tail/tail.c
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2000-12-02 19:10:12 +0000
committerJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2000-12-02 19:10:12 +0000
commit247e7cb1d38817eccb999252d3241a7e8b798e3a (patch)
tree52c974cdeb2877567d75790c952ee07a2149ba1a /usr.bin/tail/tail.c
parent98c28d6cc5c5f82139199337a97c5bf2474e2be0 (diff)
downloadsrc-247e7cb1d38817eccb999252d3241a7e8b798e3a.tar.gz
src-247e7cb1d38817eccb999252d3241a7e8b798e3a.zip
Properly constify some static arrays.
Also #if out some sccsid's and add rcsid's.
Notes
Notes: svn path=/head/; revision=69528
Diffstat (limited to 'usr.bin/tail/tail.c')
-rw-r--r--usr.bin/tail/tail.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/tail/tail.c b/usr.bin/tail/tail.c
index 416d44145e86..88078cbe0bad 100644
--- a/usr.bin/tail/tail.c
+++ b/usr.bin/tail/tail.c
@@ -35,13 +35,17 @@
*/
#ifndef lint
-static char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1991, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
+#if 0
static char sccsid[] = "@(#)tail.c 8.1 (Berkeley) 6/6/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>