diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-26 07:27:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-26 07:27:33 +0000 |
commit | e985c54ca22a1b161106287b8b7494e393cc38eb (patch) | |
tree | 10f77c517e70b1721046e6d3831a594646dc86af /usr.bin/find/extern.h | |
parent | 68cb2f01fcab44bb7692da6af113e76acb3cff3d (diff) |
bring protypes into scope. this requires some quirky handling, but in
the end everything is much clearer; ok tedu (itojun might like to see
how ifconfig looks after this)
Diffstat (limited to 'usr.bin/find/extern.h')
-rw-r--r-- | usr.bin/find/extern.h | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/usr.bin/find/extern.h b/usr.bin/find/extern.h index 390e2a595a4..525a6058962 100644 --- a/usr.bin/find/extern.h +++ b/usr.bin/find/extern.h @@ -1,4 +1,4 @@ -/* * $OpenBSD: extern.h,v 1.13 2003/06/03 02:56:08 millert Exp $*/ +/* * $OpenBSD: extern.h,v 1.14 2003/06/26 07:27:29 deraadt Exp $*/ /*- * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. @@ -46,44 +46,44 @@ void printlong(char *, char *, struct stat *); int queryuser(char **); void show_path(int); -PLAN *c_amin(char *); -PLAN *c_anewer(char *); -PLAN *c_atime(char *); -PLAN *c_cmin(char *); -PLAN *c_cnewer(char *); -PLAN *c_ctime(char *); -PLAN *c_depth(void); -PLAN *c_empty(void); -PLAN *c_exec(char ***, int); -PLAN *c_execdir(char ***); -PLAN *c_flags(char *); -PLAN *c_follow(void); -PLAN *c_fstype(char *); -PLAN *c_group(char *); -PLAN *c_iname(char *); -PLAN *c_inum(char *); -PLAN *c_links(char *); -PLAN *c_ls(void); -PLAN *c_maxdepth(char *); -PLAN *c_mindepth(char *); -PLAN *c_mmin(char *); -PLAN *c_name(char *); -PLAN *c_newer(char *); -PLAN *c_nogroup(void); -PLAN *c_nouser(void); -PLAN *c_path(char *); -PLAN *c_perm(char *); -PLAN *c_print(void); -PLAN *c_print0(void); -PLAN *c_prune(void); -PLAN *c_size(char *); -PLAN *c_type(char *); -PLAN *c_user(char *); -PLAN *c_xdev(void); -PLAN *c_openparen(void); -PLAN *c_closeparen(void); -PLAN *c_mtime(char *); -PLAN *c_not(void); -PLAN *c_or(void); +PLAN *c_amin(char *, char ***, int); +PLAN *c_anewer(char *, char ***, int); +PLAN *c_atime(char *, char ***, int); +PLAN *c_cmin(char *, char ***, int); +PLAN *c_cnewer(char *, char ***, int); +PLAN *c_ctime(char *, char ***, int); +PLAN *c_depth(char *, char ***, int); +PLAN *c_empty(char *, char ***, int); +PLAN *c_exec(char *, char ***, int); +PLAN *c_execdir(char *, char ***, int); +PLAN *c_flags(char *, char ***, int); +PLAN *c_follow(char *, char ***, int); +PLAN *c_fstype(char *, char ***, int); +PLAN *c_group(char *, char ***, int); +PLAN *c_iname(char *, char ***, int); +PLAN *c_inum(char *, char ***, int); +PLAN *c_links(char *, char ***, int); +PLAN *c_ls(char *, char ***, int); +PLAN *c_maxdepth(char *, char ***, int); +PLAN *c_mindepth(char *, char ***, int); +PLAN *c_mmin(char *, char ***, int); +PLAN *c_name(char *, char ***, int); +PLAN *c_newer(char *, char ***, int); +PLAN *c_nogroup(char *, char ***, int); +PLAN *c_nouser(char *, char ***, int); +PLAN *c_path(char *, char ***, int); +PLAN *c_perm(char *, char ***, int); +PLAN *c_print(char *, char ***, int); +PLAN *c_print0(char *, char ***, int); +PLAN *c_prune(char *, char ***, int); +PLAN *c_size(char *, char ***, int); +PLAN *c_type(char *, char ***, int); +PLAN *c_user(char *, char ***, int); +PLAN *c_xdev(char *, char ***, int); +PLAN *c_openparen(char *, char ***, int); +PLAN *c_closeparen(char *, char ***, int); +PLAN *c_mtime(char *, char ***, int); +PLAN *c_not(char *, char ***, int); +PLAN *c_or(char *, char ***, int); extern int ftsoptions, isdeprecated, isdepth, isoutput, isxargs; |