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/fs | |
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/fs')
-rw-r--r-- | sys/fs/cd9660/iso.h | 13 | ||||
-rw-r--r-- | sys/fs/fifofs/fifo.h | 7 |
2 files changed, 14 insertions, 6 deletions
diff --git a/sys/fs/cd9660/iso.h b/sys/fs/cd9660/iso.h index fa9e2c025f13..6841623c35f9 100644 --- a/sys/fs/cd9660/iso.h +++ b/sys/fs/cd9660/iso.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)iso.h 8.2 (Berkeley) 1/23/94 - * $Id: iso.h,v 1.7 1995/10/31 12:13:49 phk Exp $ + * $Id: iso.h,v 1.8 1995/11/09 08:13:35 bde Exp $ */ #define ISODCL(from, to) (to - from + 1) @@ -212,7 +212,7 @@ struct iso_mnt { #define iso_lblktodaddr(imp, lbn) btodb(iso_lblktosize(imp, lbn)) #define iso_dblkinc(imp, lbn) ((lbn) + iso_lblktodaddr(imp, 1)) #define iso_dblkno(imp, loc) iso_lblktodaddr(imp, iso_lblkno(imp, loc)) -int cd9660_init __P(()); +int cd9660_init __P((void)); struct iso_node; int iso_blkatoff __P((struct iso_node *ip, long offset, struct buf **bpp)); @@ -225,6 +225,15 @@ int cd9660_mountroot __P((void)); extern vop_t **cd9660_vnodeop_p; +static int isonum_711 __P((unsigned char *p)); +static int isonum_712 __P((char *p)); +static int isonum_721 __P((unsigned char *p)); +static int isonum_722 __P((unsigned char *p)); +static int isonum_723 __P((unsigned char *p)); +static int isonum_731 __P((unsigned char *p)); +static int isonum_732 __P((unsigned char *p)); +static int isonum_733 __P((unsigned char *p)); + static inline int isonum_711(p) unsigned char *p; diff --git a/sys/fs/fifofs/fifo.h b/sys/fs/fifofs/fifo.h index 5556626b2563..a94b425275d2 100644 --- a/sys/fs/fifofs/fifo.h +++ b/sys/fs/fifofs/fifo.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)fifo.h 8.2 (Berkeley) 2/2/94 - * $Id: fifo.h,v 1.5 1995/03/16 18:13:13 bde Exp $ + * $Id: fifo.h,v 1.6 1995/11/09 08:15:25 bde Exp $ */ extern vop_t **fifo_vnodeop_p; @@ -39,9 +39,8 @@ extern vop_t **fifo_vnodeop_p; /* * Prototypes for fifo operations on vnodes. */ -int fifo_badop(), - fifo_ebadf(); - +int fifo_badop __P((void)); +int fifo_ebadf __P((void)); int fifo_printinfo __P((struct vnode *)); int fifo_lookup __P((struct vop_lookup_args *)); #define fifo_create ((int (*) __P((struct vop_create_args *)))fifo_badop) |