svn commit: r335851 - head/usr.bin/find

Eitan Adler eadler at FreeBSD.org
Sun Jul 1 20:09:55 UTC 2018


Author: eadler
Date: Sun Jul  1 20:09:52 2018
New Revision: 335851
URL: https://svnweb.freebsd.org/changeset/base/335851

Log:
  find(1): deLINTify

Modified:
  head/usr.bin/find/find.c
  head/usr.bin/find/function.c
  head/usr.bin/find/ls.c
  head/usr.bin/find/main.c
  head/usr.bin/find/misc.c
  head/usr.bin/find/operator.c
  head/usr.bin/find/option.c

Modified: head/usr.bin/find/find.c
==============================================================================
--- head/usr.bin/find/find.c	Sun Jul  1 19:44:29 2018	(r335850)
+++ head/usr.bin/find/find.c	Sun Jul  1 20:09:52 2018	(r335851)
@@ -32,12 +32,10 @@
  * SUCH DAMAGE.
  */
 
-#ifndef lint
 #if 0
 static char sccsid[] = "@(#)find.c	8.5 (Berkeley) 8/5/94";
 #else
 #endif
-#endif /* not lint */
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");

Modified: head/usr.bin/find/function.c
==============================================================================
--- head/usr.bin/find/function.c	Sun Jul  1 19:44:29 2018	(r335850)
+++ head/usr.bin/find/function.c	Sun Jul  1 20:09:52 2018	(r335851)
@@ -32,11 +32,9 @@
  * SUCH DAMAGE.
  */
 
-#ifndef lint
 #if 0
 static const char sccsid[] = "@(#)function.c	8.10 (Berkeley) 5/4/95";
 #endif
-#endif /* not lint */
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");

Modified: head/usr.bin/find/ls.c
==============================================================================
--- head/usr.bin/find/ls.c	Sun Jul  1 19:44:29 2018	(r335850)
+++ head/usr.bin/find/ls.c	Sun Jul  1 20:09:52 2018	(r335851)
@@ -29,11 +29,9 @@
  * SUCH DAMAGE.
  */
 
-#ifndef lint
 #if 0
 static char sccsid[] = "@(#)ls.c	8.1 (Berkeley) 6/6/93";
 #endif
-#endif /* not lint */
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");

Modified: head/usr.bin/find/main.c
==============================================================================
--- head/usr.bin/find/main.c	Sun Jul  1 19:44:29 2018	(r335850)
+++ head/usr.bin/find/main.c	Sun Jul  1 20:09:52 2018	(r335851)
@@ -32,17 +32,13 @@
  * SUCH DAMAGE.
  */
 
-#ifndef lint
 static const char copyright[] =
 "@(#) Copyright (c) 1990, 1993, 1994\n\
 	The Regents of the University of California.  All rights reserved.\n";
-#endif /* not lint */
 
-#ifndef lint
 #if 0
 static char sccsid[] = "@(#)main.c	8.4 (Berkeley) 5/4/95";
 #endif
-#endif /* not lint */
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");

Modified: head/usr.bin/find/misc.c
==============================================================================
--- head/usr.bin/find/misc.c	Sun Jul  1 19:44:29 2018	(r335850)
+++ head/usr.bin/find/misc.c	Sun Jul  1 20:09:52 2018	(r335851)
@@ -32,12 +32,10 @@
  * SUCH DAMAGE.
  */
 
-#ifndef lint
 #if 0
 static char sccsid[] = "@(#)misc.c	8.2 (Berkeley) 4/1/94";
 #else
 #endif
-#endif /* not lint */
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");

Modified: head/usr.bin/find/operator.c
==============================================================================
--- head/usr.bin/find/operator.c	Sun Jul  1 19:44:29 2018	(r335850)
+++ head/usr.bin/find/operator.c	Sun Jul  1 20:09:52 2018	(r335851)
@@ -32,11 +32,9 @@
  * SUCH DAMAGE.
  */
 
-#ifndef lint
 #if 0
 static char sccsid[] = "@(#)operator.c	8.1 (Berkeley) 6/6/93";
 #endif
-#endif /* not lint */
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");

Modified: head/usr.bin/find/option.c
==============================================================================
--- head/usr.bin/find/option.c	Sun Jul  1 19:44:29 2018	(r335850)
+++ head/usr.bin/find/option.c	Sun Jul  1 20:09:52 2018	(r335851)
@@ -32,11 +32,9 @@
  * SUCH DAMAGE.
  */
 
-#ifndef lint
 /*
 static char sccsid[] = "@(#)option.c	8.2 (Berkeley) 4/16/94";
 */
-#endif /* not lint */
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");


More information about the svn-src-all mailing list