diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /bin/csh | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'bin/csh')
-rw-r--r-- | bin/csh/extern.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/csh/extern.h b/bin/csh/extern.h index 393be67a3a8..6b161488209 100644 --- a/bin/csh/extern.h +++ b/bin/csh/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.4 2002/02/16 21:27:06 millert Exp $ */ +/* $OpenBSD: extern.h,v 1.5 2002/02/17 19:42:18 millert Exp $ */ /* $NetBSD: extern.h,v 1.8 1996/10/31 23:50:54 christos Exp $ */ /*- @@ -163,7 +163,7 @@ Char *globone(Char *, int); int Gmatch(Char *, Char *); void ginit(void); Char **globall(Char **); -void rscan __P((Char **, void (*)())); +void rscan(Char **, void (*)()); void tglob(Char **); void trim(Char **); #ifdef FILEC @@ -296,8 +296,8 @@ void plist(struct varent *); */ void donice(Char **, struct command *); void dotime(Char **, struct command *); -void prusage __P((struct rusage *, struct rusage *, - struct timeval *, struct timeval *)); +void prusage(struct rusage *, struct rusage *, + struct timeval *, struct timeval *); void ruadd(struct rusage *, struct rusage *); void settimes(void); void pcsecs(long); |