option.c (c3aac50f284c6cca5b4f2eb46aaa13812cb8b630) | option.c (567664c4a7534c7e998249b59cba10d5395c9086) |
---|---|
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 --- 56 unchanged lines hidden (view full) --- 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 { "-exec", N_EXEC, c_exec, O_ARGVP }, 72 { "-execdir", N_EXECDIR, c_execdir, O_ARGVP }, | 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 --- 56 unchanged lines hidden (view full) --- 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 { "-exec", N_EXEC, c_exec, O_ARGVP }, 72 { "-execdir", N_EXECDIR, c_execdir, O_ARGVP }, |
73 { "-flags", N_FLAGS, c_flags, O_ARGV }, |
|
73 { "-follow", N_FOLLOW, c_follow, O_ZERO }, 74 75/* 76 * NetBSD doesn't provide a getvfsbyname(), so this option 77 * is not available if using a NetBSD kernel. 78 */ 79#if !defined(__NetBSD__) 80 { "-fstype", N_FSTYPE, c_fstype, O_ARGV }, --- 87 unchanged lines hidden --- | 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. 79 */ 80#if !defined(__NetBSD__) 81 { "-fstype", N_FSTYPE, c_fstype, O_ARGV }, --- 87 unchanged lines hidden --- |