diff options
author | imp <imp@FreeBSD.org> | 2002-03-22 01:22:50 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-03-22 01:22:50 +0000 |
commit | 74d826c7a6e9f98072df5f7dba2b84aa516fe425 (patch) | |
tree | 6ba560b9c74ad4aa7b2711587ec42a969bdca745 /usr.bin/fstat | |
parent | ce819c0c139981d7bab5fe36a6074af74b01d185 (diff) | |
download | FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.zip FreeBSD-src-74d826c7a6e9f98072df5f7dba2b84aa516fe425.tar.gz |
remove __P
Diffstat (limited to 'usr.bin/fstat')
-rw-r--r-- | usr.bin/fstat/fstat.c | 24 | ||||
-rw-r--r-- | usr.bin/fstat/fstat.h | 6 |
2 files changed, 15 insertions, 15 deletions
diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c index b31bf25..564efbf 100644 --- a/usr.bin/fstat/fstat.c +++ b/usr.bin/fstat/fstat.c @@ -138,18 +138,18 @@ int maxfiles; kvm_t *kd; -void dofiles __P((struct kinfo_proc *kp)); -void dommap __P((struct kinfo_proc *kp)); -void vtrans __P((struct vnode *vp, int i, int flag)); -int ufs_filestat __P((struct vnode *vp, struct filestat *fsp)); -int nfs_filestat __P((struct vnode *vp, struct filestat *fsp)); -int devfs_filestat __P((struct vnode *vp, struct filestat *fsp)); -char *getmnton __P((struct mount *m)); -void pipetrans __P((struct pipe *pi, int i, int flag)); -void socktrans __P((struct socket *sock, int i)); -void getinetproto __P((int number)); -int getfname __P((char *filename)); -void usage __P((void)); +void dofiles(struct kinfo_proc *kp); +void dommap(struct kinfo_proc *kp); +void vtrans(struct vnode *vp, int i, int flag); +int ufs_filestat(struct vnode *vp, struct filestat *fsp); +int nfs_filestat(struct vnode *vp, struct filestat *fsp); +int devfs_filestat(struct vnode *vp, struct filestat *fsp); +char *getmnton(struct mount *m); +void pipetrans(struct pipe *pi, int i, int flag); +void socktrans(struct socket *sock, int i); +void getinetproto(int number); +int getfname(char *filename); +void usage(void); int diff --git a/usr.bin/fstat/fstat.h b/usr.bin/fstat/fstat.h index 02ce12a..f42a1cd 100644 --- a/usr.bin/fstat/fstat.h +++ b/usr.bin/fstat/fstat.h @@ -64,10 +64,10 @@ extern kvm_t *kd; extern int vflg; extern int Pid; -udev_t dev2udev __P((dev_t dev)); +udev_t dev2udev(dev_t dev); /* Additional filesystem types */ -int isofs_filestat __P((struct vnode *vp, struct filestat *fsp)); -int msdosfs_filestat __P((struct vnode *vp, struct filestat *fsp)); +int isofs_filestat(struct vnode *vp, struct filestat *fsp); +int msdosfs_filestat(struct vnode *vp, struct filestat *fsp); #endif /* __FSTAT_H__ */ |