Deleted Added
full compact
find.h (83450) find.h (91400)
1/*-
2 * Copyright (c) 1990, 1993
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

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)find.h 8.1 (Berkeley) 6/6/93
1/*-
2 * Copyright (c) 1990, 1993
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

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)find.h 8.1 (Berkeley) 6/6/93
37 * $FreeBSD: head/usr.bin/find/find.h 83450 2001-09-14 12:47:13Z ru $
37 * $FreeBSD: head/usr.bin/find/find.h 91400 2002-02-27 17:57:00Z dwmalone $
38 */
39
40#include <regex.h>
41
42/* forward declarations */
43struct _plandata;
44struct _option;
45

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

114#define t_data p_un._t_data
115#define u_data p_un._u_data
116#define re_data p_un._re_data
117#define e_argv p_un.ex._e_argv
118#define e_orig p_un.ex._e_orig
119#define e_len p_un.ex._e_len
120
121typedef struct _option {
38 */
39
40#include <regex.h>
41
42/* forward declarations */
43struct _plandata;
44struct _option;
45

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

114#define t_data p_un._t_data
115#define u_data p_un._u_data
116#define re_data p_un._re_data
117#define e_argv p_un.ex._e_argv
118#define e_orig p_un.ex._e_orig
119#define e_len p_un.ex._e_len
120
121typedef struct _option {
122 char *name; /* option name */
122 const char *name; /* option name */
123 creat_f *create; /* create function */
124 exec_f *execute; /* execute function */
125 int flags;
126} OPTION;
127
128#include "extern.h"
123 creat_f *create; /* create function */
124 exec_f *execute; /* execute function */
125 int flags;
126} OPTION;
127
128#include "extern.h"