option.c (c76bc8f3bf28ab1e36706a4feeb459fa9a7f0704) | option.c (ed1a4621a2ae51371c8e4f181fcb4cdf80d92104) |
---|---|
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 --- 54 unchanged lines hidden (view full) --- 63 { "-a", N_AND, NULL, O_NONE }, 64 { "-amin", N_AMIN, c_amin, O_ARGV }, 65 { "-and", N_AND, NULL, O_NONE }, 66 { "-atime", N_ATIME, c_atime, O_ARGV }, 67 { "-cmin", N_CMIN, c_cmin, O_ARGV }, 68 { "-ctime", N_CTIME, c_ctime, O_ARGV }, 69 { "-delete", N_DELETE, c_delete, O_ZERO }, 70 { "-depth", N_DEPTH, c_depth, O_ZERO }, | 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 --- 54 unchanged lines hidden (view full) --- 63 { "-a", N_AND, NULL, O_NONE }, 64 { "-amin", N_AMIN, c_amin, O_ARGV }, 65 { "-and", N_AND, NULL, O_NONE }, 66 { "-atime", N_ATIME, c_atime, O_ARGV }, 67 { "-cmin", N_CMIN, c_cmin, O_ARGV }, 68 { "-ctime", N_CTIME, c_ctime, O_ARGV }, 69 { "-delete", N_DELETE, c_delete, O_ZERO }, 70 { "-depth", N_DEPTH, c_depth, O_ZERO }, |
71 { "-empty", N_EMPTY, c_empty, O_ZERO }, |
|
71 { "-exec", N_EXEC, c_exec, O_ARGVP }, 72 { "-execdir", N_EXECDIR, c_execdir, O_ARGVP }, 73 { "-flags", N_FLAGS, c_flags, O_ARGV }, 74 { "-follow", N_FOLLOW, c_follow, O_ZERO }, 75 76/* 77 * NetBSD doesn't provide a getvfsbyname(), so this option 78 * is not available if using a NetBSD kernel. --- 92 unchanged lines hidden --- | 72 { "-exec", N_EXEC, c_exec, O_ARGVP }, 73 { "-execdir", N_EXECDIR, c_execdir, O_ARGVP }, 74 { "-flags", N_FLAGS, c_flags, O_ARGV }, 75 { "-follow", N_FOLLOW, c_follow, O_ZERO }, 76 77/* 78 * NetBSD doesn't provide a getvfsbyname(), so this option 79 * is not available if using a NetBSD kernel. --- 92 unchanged lines hidden --- |