aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/find
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-11-23 17:21:37 +0000
committerWarner Losh <imp@FreeBSD.org>2023-11-27 05:23:30 +0000
commitbdcbfde31e8e9b343f113a1956384bdf30d1ed62 (patch)
tree4894badc82dc87ba6818a48c68f2d67af814fcf5 /usr.bin/find
parentac00d4d59b18a76c6148ca5d7439bb446d38da5c (diff)
downloadsrc-bdcbfde31e8e9b343f113a1956384bdf30d1ed62.tar.gz
src-bdcbfde31e8e9b343f113a1956384bdf30d1ed62.zip
usr.bin: Remove ancient SCCS tags.
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
Diffstat (limited to 'usr.bin/find')
-rw-r--r--usr.bin/find/Makefile1
-rw-r--r--usr.bin/find/extern.h2
-rw-r--r--usr.bin/find/find.12
-rw-r--r--usr.bin/find/find.c3
-rw-r--r--usr.bin/find/find.h2
-rw-r--r--usr.bin/find/function.c3
-rw-r--r--usr.bin/find/ls.c3
-rw-r--r--usr.bin/find/main.c3
-rw-r--r--usr.bin/find/misc.c3
-rw-r--r--usr.bin/find/operator.c3
10 files changed, 0 insertions, 25 deletions
diff --git a/usr.bin/find/Makefile b/usr.bin/find/Makefile
index 3fa19f701c79..3a1387c20c16 100644
--- a/usr.bin/find/Makefile
+++ b/usr.bin/find/Makefile
@@ -1,4 +1,3 @@
-# @(#)Makefile 8.1 (Berkeley) 6/6/93
.include <src.opts.mk>
diff --git a/usr.bin/find/extern.h b/usr.bin/find/extern.h
index 8c98a6d86bcd..c84ca8953e50 100644
--- a/usr.bin/find/extern.h
+++ b/usr.bin/find/extern.h
@@ -27,8 +27,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)extern.h 8.3 (Berkeley) 4/16/94
*/
#include <sys/cdefs.h>
diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1
index 5f559a12ec50..80cb175c550d 100644
--- a/usr.bin/find/find.1
+++ b/usr.bin/find/find.1
@@ -28,8 +28,6 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" @(#)find.1 8.7 (Berkeley) 5/9/95
-.\"
.Dd January 23, 2023
.Dt FIND 1
.Os
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c
index 3bff4982b4b6..6b9696ea71df 100644
--- a/usr.bin/find/find.c
+++ b/usr.bin/find/find.c
@@ -32,9 +32,6 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)find.c 8.5 (Berkeley) 8/5/94";
-#endif
#include <sys/cdefs.h>
#include <sys/types.h>
diff --git a/usr.bin/find/find.h b/usr.bin/find/find.h
index 44e1d97c0452..1664eeb9a93f 100644
--- a/usr.bin/find/find.h
+++ b/usr.bin/find/find.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)find.h 8.1 (Berkeley) 6/6/93
*/
#include <regex.h>
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c
index d887c8479099..03e49fc62b64 100644
--- a/usr.bin/find/function.c
+++ b/usr.bin/find/function.c
@@ -32,9 +32,6 @@
* SUCH DAMAGE.
*/
-#if 0
-static const char sccsid[] = "@(#)function.c 8.10 (Berkeley) 5/4/95";
-#endif
#include <sys/cdefs.h>
#include <sys/param.h>
diff --git a/usr.bin/find/ls.c b/usr.bin/find/ls.c
index d8a150a30eea..a61d9cb7dbcd 100644
--- a/usr.bin/find/ls.c
+++ b/usr.bin/find/ls.c
@@ -29,9 +29,6 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)ls.c 8.1 (Berkeley) 6/6/93";
-#endif
#include <sys/cdefs.h>
#include <sys/param.h>
diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c
index 56f1feece6e4..cc21f77740d4 100644
--- a/usr.bin/find/main.c
+++ b/usr.bin/find/main.c
@@ -36,9 +36,6 @@ static const char copyright[] =
"@(#) Copyright (c) 1990, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
-#if 0
-static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
-#endif
#include <sys/cdefs.h>
#include <sys/types.h>
diff --git a/usr.bin/find/misc.c b/usr.bin/find/misc.c
index 0ef7af894b2d..01c9f9145fa2 100644
--- a/usr.bin/find/misc.c
+++ b/usr.bin/find/misc.c
@@ -32,9 +32,6 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)misc.c 8.2 (Berkeley) 4/1/94";
-#endif
#include <sys/cdefs.h>
#include <sys/types.h>
diff --git a/usr.bin/find/operator.c b/usr.bin/find/operator.c
index 2a2317da765f..f65b800c32a6 100644
--- a/usr.bin/find/operator.c
+++ b/usr.bin/find/operator.c
@@ -32,9 +32,6 @@
* SUCH DAMAGE.
*/
-#if 0
-static char sccsid[] = "@(#)operator.c 8.1 (Berkeley) 6/6/93";
-#endif
#include <sys/cdefs.h>
#include <sys/types.h>