Deleted Added
full compact
extern.h (93644) extern.h (116333)
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)extern.h 8.3 (Berkeley) 4/16/94
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)extern.h 8.3 (Berkeley) 4/16/94
34 * $FreeBSD: head/usr.bin/find/extern.h 93644 2002-04-02 10:45:34Z markm $
34 * $FreeBSD: head/usr.bin/find/extern.h 116333 2003-06-14 13:00:21Z markm $
35 */
36
37#include <sys/cdefs.h>
38
39void brace_subst(char *, char **, char *, int);
40PLAN *find_create(char ***);
41int find_execute(PLAN *, char **);
42PLAN *find_formplan(char **);

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

109exec_f f_regex;
110exec_f f_size;
111exec_f f_type;
112exec_f f_user;
113
114extern int ftsoptions, isdeprecated, isdepth, isoutput, issort, isxargs;
115extern int mindepth, maxdepth;
116extern int regexp_flags;
35 */
36
37#include <sys/cdefs.h>
38
39void brace_subst(char *, char **, char *, int);
40PLAN *find_create(char ***);
41int find_execute(PLAN *, char **);
42PLAN *find_formplan(char **);

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

109exec_f f_regex;
110exec_f f_size;
111exec_f f_type;
112exec_f f_user;
113
114extern int ftsoptions, isdeprecated, isdepth, isoutput, issort, isxargs;
115extern int mindepth, maxdepth;
116extern int regexp_flags;
117extern time_t now;
118extern int dotfd;
119extern FTS *tree;