diff options
author | Bruce Evans <bde@FreeBSD.org> | 1995-11-21 12:55:26 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1995-11-21 12:55:26 +0000 |
commit | 512fef80a91b2c843a103b8ec3710497761f172e (patch) | |
tree | cccb12ba068b651660e03742d946e8b53d952db7 /sys/miscfs/specfs | |
parent | 9357b8ba0689e345848b16c748d066fcbc83a311 (diff) | |
download | src-512fef80a91b2c843a103b8ec3710497761f172e.tar.gz src-512fef80a91b2c843a103b8ec3710497761f172e.zip |
Completed function declarations and/or added prototypes.
Notes
Notes:
svn path=/head/; revision=12453
Diffstat (limited to 'sys/miscfs/specfs')
-rw-r--r-- | sys/miscfs/specfs/specdev.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/miscfs/specfs/specdev.h b/sys/miscfs/specfs/specdev.h index 01a799b6834a..c10bf8916488 100644 --- a/sys/miscfs/specfs/specdev.h +++ b/sys/miscfs/specfs/specdev.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)specdev.h 8.2 (Berkeley) 2/2/94 - * $Id: specdev.h,v 1.4 1995/10/23 02:22:51 dyson Exp $ + * $Id: specdev.h,v 1.5 1995/11/09 08:16:12 bde Exp $ */ /* @@ -81,9 +81,8 @@ struct flock; struct buf; struct uio; -int spec_badop(), - spec_ebadf(); - +int spec_badop __P((void)); +int spec_ebadf __P((void)); int spec_lookup __P((struct vop_lookup_args *)); #define spec_create ((int (*) __P((struct vop_create_args *)))spec_badop) #define spec_mknod ((int (*) __P((struct vop_mknod_args *)))spec_badop) |