diff options
author | Warner Losh <imp@FreeBSD.org> | 2002-03-21 13:20:49 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2002-03-21 13:20:49 +0000 |
commit | d476a036e28a06aadb6a33050af920f3f99fbb8c (patch) | |
tree | 7889a8c6dd8258adf78b1be9e93d2baefad6abb1 /sbin/nfsiod | |
parent | 854299908ccfad3f3d42b5b24443e15bbc03471c (diff) |
o remove __P
o remove main prototype
Notes
Notes:
svn path=/head/; revision=92883
Diffstat (limited to 'sbin/nfsiod')
-rw-r--r-- | sbin/nfsiod/nfsiod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/nfsiod/nfsiod.c b/sbin/nfsiod/nfsiod.c index 65ded3544c70..1b55d856d71f 100644 --- a/sbin/nfsiod/nfsiod.c +++ b/sbin/nfsiod/nfsiod.c @@ -69,9 +69,9 @@ int debug = 1; int debug = 0; #endif -void nonfs __P((int)); -void reapchild __P((int)); -void usage __P((void)); +void nonfs(int); +void reapchild(int); +void usage(void); /* * Nfsiod does asynchronous buffered I/O on behalf of the NFS client. |