summaryrefslogtreecommitdiffstats
path: root/usr.bin/find
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2010-05-06 17:06:36 +0000
committerdelphij <delphij@FreeBSD.org>2010-05-06 17:06:36 +0000
commit39345b93c0d37f3ab80162472f9bfbdca6c332f9 (patch)
treee19d7a5511df87d5ad70a07eeb5c62500e066a1f /usr.bin/find
parent1ab8182e837778a2950c6ecf083f79002f6fa892 (diff)
downloadFreeBSD-src-39345b93c0d37f3ab80162472f9bfbdca6c332f9.zip
FreeBSD-src-39345b93c0d37f3ab80162472f9bfbdca6c332f9.tar.gz
Revert r207677 which is considered a violation of style(9).
Pointed out by: bde Pointy hat to: delphij
Diffstat (limited to 'usr.bin/find')
-rw-r--r--usr.bin/find/find.c9
-rw-r--r--usr.bin/find/function.c8
-rw-r--r--usr.bin/find/ls.c8
-rw-r--r--usr.bin/find/main.c8
-rw-r--r--usr.bin/find/misc.c9
-rw-r--r--usr.bin/find/operator.c8
-rw-r--r--usr.bin/find/option.c12
7 files changed, 46 insertions, 16 deletions
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c
index 35ef5b2..cc2d797 100644
--- a/usr.bin/find/find.c
+++ b/usr.bin/find/find.c
@@ -32,10 +32,15 @@
* 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.c 8.5 (Berkeley) 8/5/94
*/
+#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$");
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c
index 4329887..1714627 100644
--- a/usr.bin/find/function.c
+++ b/usr.bin/find/function.c
@@ -32,10 +32,14 @@
* 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.
- *
- * @(#)function.c 8.10 (Berkeley) 5/4/95
*/
+#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$");
diff --git a/usr.bin/find/ls.c b/usr.bin/find/ls.c
index e96994b..88e4593 100644
--- a/usr.bin/find/ls.c
+++ b/usr.bin/find/ls.c
@@ -29,10 +29,14 @@
* 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.
- *
- * @(#)ls.c 8.1 (Berkeley) 6/6/93
*/
+#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$");
diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c
index 7d4c24a..8e2b42c 100644
--- a/usr.bin/find/main.c
+++ b/usr.bin/find/main.c
@@ -32,8 +32,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.
- *
- * @(#)main.c 8.4 (Berkeley) 5/4/95
*/
#ifndef lint
@@ -42,6 +40,12 @@ char copyright[] =
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$");
diff --git a/usr.bin/find/misc.c b/usr.bin/find/misc.c
index 3696c13..1532906 100644
--- a/usr.bin/find/misc.c
+++ b/usr.bin/find/misc.c
@@ -32,10 +32,15 @@
* 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.
- *
- * @(#)misc.c 8.2 (Berkeley) 4/1/94
*/
+#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$");
diff --git a/usr.bin/find/operator.c b/usr.bin/find/operator.c
index d1a7ea8..c774efa 100644
--- a/usr.bin/find/operator.c
+++ b/usr.bin/find/operator.c
@@ -32,10 +32,14 @@
* 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.
- *
- * @(#)operator.c 8.1 (Berkeley) 6/6/93
*/
+#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$");
diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c
index 6ae3958..02287c9 100644
--- a/usr.bin/find/option.c
+++ b/usr.bin/find/option.c
@@ -32,10 +32,14 @@
* 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.
- *
- * @(#)option.c 8.2 (Berkeley) 4/16/94
*/
+#ifndef lint
+/*
+static char sccsid[] = "@(#)option.c 8.2 (Berkeley) 4/16/94";
+*/
+#endif /* not lint */
+
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
@@ -51,7 +55,7 @@ __FBSDID("$FreeBSD$");
#include "find.h"
-int typecompare(const void *, const void *);
+static int typecompare(const void *, const void *);
/* NB: the following table must be sorted lexically. */
/* Options listed with C++ comments are in gnu find, but not our find */
@@ -190,7 +194,7 @@ lookup_option(const char *name)
sizeof(options)/sizeof(OPTION), sizeof(OPTION), typecompare));
}
-int
+static int
typecompare(const void *a, const void *b)
{
return (strcmp(((const OPTION *)a)->name, ((const OPTION *)b)->name));
OpenPOWER on IntegriCloud