lint
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 16 Nov 1990 02:47:46 +0000 (18:47 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 16 Nov 1990 02:47:46 +0000 (18:47 -0800)
SCCS-vsn: usr.bin/find/main.c 5.4
SCCS-vsn: usr.bin/find/oldsyntax.c 5.2

usr/src/usr.bin/find/main.c
usr/src/usr.bin/find/oldsyntax.c

index d93aab1..48d7ed5 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)main.c     5.3 (Berkeley) %G%";
+static char sccsid[] = "@(#)main.c     5.4 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -17,6 +17,7 @@ static char sccsid[] = "@(#)main.c    5.3 (Berkeley) %G%";
 
 int relative;
 
 
 int relative;
 
+void
 newsyntax(argc, argvp)
        int argc;
        char ***argvp;
 newsyntax(argc, argvp)
        int argc;
        char ***argvp;
index 6e99f08..9ac2608 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)oldsyntax.c        5.1 (Berkeley) %G%";
+static char sccsid[] = "@(#)oldsyntax.c        5.2 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <stdio.h>
 #endif /* not lint */
 
 #include <stdio.h>
@@ -17,7 +17,7 @@ static char sccsid[] = "@(#)oldsyntax.c       5.1 (Berkeley) %G%";
  *     a pointer to them.  The old find syntax assumes all command arguments
  *     up to the first one beginning with a '-', '(' or '!' are pathnames.
  */
  *     a pointer to them.  The old find syntax assumes all command arguments
  *     up to the first one beginning with a '-', '(' or '!' are pathnames.
  */
-char **
+void
 oldsyntax(argvp)
        char ***argvp;
 {
 oldsyntax(argvp)
        char ***argvp;
 {