summaryrefslogtreecommitdiff
path: root/usr.bin/indent
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-10-28 00:00:00 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-10-28 00:00:00 +0000
commitd6f987883e262363e2689803a36a7c32736476cc (patch)
tree1158893c08ead8fccdd4ac523d3492f68c4c1cda /usr.bin/indent
parent94ea65f5c4b7bedff1d6c9caca5363f926955d43 (diff)
rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms
Diffstat (limited to 'usr.bin/indent')
-rw-r--r--usr.bin/indent/args.c7
-rw-r--r--usr.bin/indent/indent.c16
-rw-r--r--usr.bin/indent/io.c7
-rw-r--r--usr.bin/indent/lexi.c7
-rw-r--r--usr.bin/indent/parse.c7
-rw-r--r--usr.bin/indent/pr_comment.c7
6 files changed, 6 insertions, 45 deletions
diff --git a/usr.bin/indent/args.c b/usr.bin/indent/args.c
index 292c3c9bf12..845a22fad07 100644
--- a/usr.bin/indent/args.c
+++ b/usr.bin/indent/args.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: args.c,v 1.14 2004/07/20 03:50:26 deraadt Exp $ */
+/* $OpenBSD: args.c,v 1.15 2009/10/27 23:59:39 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -32,11 +32,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-/*static char sccsid[] = "@(#)args.c 8.1 (Berkeley) 6/6/93";*/
-static char rcsid[] = "$OpenBSD: args.c,v 1.14 2004/07/20 03:50:26 deraadt Exp $";
-#endif /* not lint */
-
/*
* Argument scanning and profile reading code. Default parameters are set
* here as well.
diff --git a/usr.bin/indent/indent.c b/usr.bin/indent/indent.c
index de972197758..2839a2c00dd 100644
--- a/usr.bin/indent/indent.c
+++ b/usr.bin/indent/indent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: indent.c,v 1.19 2009/05/29 09:07:29 sobrado Exp $ */
+/* $OpenBSD: indent.c,v 1.20 2009/10/27 23:59:39 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -32,20 +32,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-char copyright[] =
-"@(#) Copyright (c) 1985 Sun Microsystems, Inc.\n\
- @(#) Copyright (c) 1980, 1993\n\
- The Regents of the University of California.\n\
- @(#) Copyright (c) 1976 Board of Trustees of the University of Illinois.\n\
- All rights reserved.\n";
-#endif /* not lint */
-
-#ifndef lint
-/*static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93";*/
-static char rcsid[] = "$OpenBSD: indent.c,v 1.19 2009/05/29 09:07:29 sobrado Exp $";
-#endif /* not lint */
-
#include <sys/param.h>
#include <fcntl.h>
#include <unistd.h>
diff --git a/usr.bin/indent/io.c b/usr.bin/indent/io.c
index cea03237ccb..ec283086703 100644
--- a/usr.bin/indent/io.c
+++ b/usr.bin/indent/io.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: io.c,v 1.10 2005/05/15 03:27:04 millert Exp $ */
+/* $OpenBSD: io.c,v 1.11 2009/10/27 23:59:39 deraadt Exp $ */
/*
* Copyright (c) 1985 Sun Microsystems, Inc.
@@ -31,11 +31,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-/*static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 6/6/93";*/
-static char rcsid[] = "$OpenBSD: io.c,v 1.10 2005/05/15 03:27:04 millert Exp $";
-#endif /* not lint */
-
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
diff --git a/usr.bin/indent/lexi.c b/usr.bin/indent/lexi.c
index 4f05963acd9..19422d17cf9 100644
--- a/usr.bin/indent/lexi.c
+++ b/usr.bin/indent/lexi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lexi.c,v 1.14 2007/11/27 16:22:14 martynas Exp $ */
+/* $OpenBSD: lexi.c,v 1.15 2009/10/27 23:59:39 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -32,11 +32,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-/*static char sccsid[] = "@(#)lexi.c 8.1 (Berkeley) 6/6/93";*/
-static char rcsid[] = "$OpenBSD: lexi.c,v 1.14 2007/11/27 16:22:14 martynas Exp $";
-#endif /* not lint */
-
/*
* Here we have the token scanner for indent. It scans off one token and puts
* it in the global variable "token". It returns a code, indicating the type
diff --git a/usr.bin/indent/parse.c b/usr.bin/indent/parse.c
index 3121f7f8519..a55dcf791dc 100644
--- a/usr.bin/indent/parse.c
+++ b/usr.bin/indent/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.8 2004/07/20 03:50:26 deraadt Exp $ */
+/* $OpenBSD: parse.c,v 1.9 2009/10/27 23:59:39 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -32,11 +32,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-/*static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/6/93";*/
-static char rcsid[] = "$OpenBSD: parse.c,v 1.8 2004/07/20 03:50:26 deraadt Exp $";
-#endif /* not lint */
-
#include <stdio.h>
#include "indent_globs.h"
#include "indent_codes.h"
diff --git a/usr.bin/indent/pr_comment.c b/usr.bin/indent/pr_comment.c
index d4964d1f0ad..233d410f4c3 100644
--- a/usr.bin/indent/pr_comment.c
+++ b/usr.bin/indent/pr_comment.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pr_comment.c,v 1.6 2004/07/20 03:50:26 deraadt Exp $ */
+/* $OpenBSD: pr_comment.c,v 1.7 2009/10/27 23:59:39 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -32,11 +32,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-/*static char sccsid[] = "@(#)pr_comment.c 8.1 (Berkeley) 6/6/93";*/
-static char rcsid[] = "$OpenBSD: pr_comment.c,v 1.6 2004/07/20 03:50:26 deraadt Exp $";
-#endif /* not lint */
-
#include <err.h>
#include <stdio.h>
#include <stdlib.h>