Deleted Added
sdiff udiff text old ( 41399 ) new ( 61575 )
full compact
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Cimarron D. Taylor of the University of California, Berkeley.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 27 unchanged lines hidden (view full) ---

36
37#ifndef lint
38char copyright[] =
39"@(#) Copyright (c) 1990, 1993, 1994\n\
40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
45#endif /* not lint */
46
47#include <sys/types.h>
48#include <sys/stat.h>
49
50#include <err.h>
51#include <errno.h>
52#include <fcntl.h>

--- 9 unchanged lines hidden (view full) ---

62time_t now; /* time find was run */
63int dotfd; /* starting directory */
64int ftsoptions; /* options for the ftsopen(3) call */
65int isdeprecated; /* using deprecated syntax */
66int isdepth; /* do directories on post-order visit */
67int isoutput; /* user specified output operator */
68int issort; /* do hierarchies in lexicographical order */
69int isxargs; /* don't permit xargs delimiting chars */
70
71static void usage __P((void));
72
73int
74main(argc, argv)
75 int argc;
76 char *argv[];
77{

--- 83 unchanged lines hidden ---