Deleted Added
full compact
option.c (54828) option.c (61575)
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

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

34 * SUCH DAMAGE.
35 */
36
37#ifndef lint
38/*
39static char sccsid[] = "@(#)option.c 8.2 (Berkeley) 4/16/94";
40*/
41static const char rcsid[] =
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

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

34 * SUCH DAMAGE.
35 */
36
37#ifndef lint
38/*
39static char sccsid[] = "@(#)option.c 8.2 (Berkeley) 4/16/94";
40*/
41static const char rcsid[] =
42 "$FreeBSD: head/usr.bin/find/option.c 54828 1999-12-19 15:43:19Z roberto $";
42 "$FreeBSD: head/usr.bin/find/option.c 61575 2000-06-12 11:12:41Z roberto $";
43#endif /* not lint */
44
45#include <sys/types.h>
46#include <sys/stat.h>
47
48#include <err.h>
49#include <fts.h>
50#include <stdio.h>

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

79 */
80#if !defined(__NetBSD__)
81 { "-fstype", N_FSTYPE, c_fstype, O_ARGV },
82#endif
83 { "-group", N_GROUP, c_group, O_ARGV },
84 { "-inum", N_INUM, c_inum, O_ARGV },
85 { "-links", N_LINKS, c_links, O_ARGV },
86 { "-ls", N_LS, c_ls, O_ZERO },
43#endif /* not lint */
44
45#include <sys/types.h>
46#include <sys/stat.h>
47
48#include <err.h>
49#include <fts.h>
50#include <stdio.h>

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

79 */
80#if !defined(__NetBSD__)
81 { "-fstype", N_FSTYPE, c_fstype, O_ARGV },
82#endif
83 { "-group", N_GROUP, c_group, O_ARGV },
84 { "-inum", N_INUM, c_inum, O_ARGV },
85 { "-links", N_LINKS, c_links, O_ARGV },
86 { "-ls", N_LS, c_ls, O_ZERO },
87 { "-maxdepth", N_MAXDEPTH, c_maxdepth, O_ARGV },
88 { "-mindepth", N_MINDEPTH, c_mindepth, O_ARGV },
87 { "-mmin", N_MMIN, c_mmin, O_ARGV },
88 { "-mtime", N_MTIME, c_mtime, O_ARGV },
89 { "-name", N_NAME, c_name, O_ARGV },
90 { "-newer", N_NEWER, c_newer, O_ARGV },
91 { "-nogroup", N_NOGROUP, c_nogroup, O_ZERO },
92 { "-nouser", N_NOUSER, c_nouser, O_ZERO },
93 { "-o", N_OR, c_or, O_ZERO },
94 { "-ok", N_OK, c_exec, O_ARGVP },

--- 74 unchanged lines hidden ---
89 { "-mmin", N_MMIN, c_mmin, O_ARGV },
90 { "-mtime", N_MTIME, c_mtime, O_ARGV },
91 { "-name", N_NAME, c_name, O_ARGV },
92 { "-newer", N_NEWER, c_newer, O_ARGV },
93 { "-nogroup", N_NOGROUP, c_nogroup, O_ZERO },
94 { "-nouser", N_NOUSER, c_nouser, O_ZERO },
95 { "-o", N_OR, c_or, O_ZERO },
96 { "-ok", N_OK, c_exec, O_ARGVP },

--- 74 unchanged lines hidden ---