diff options
author | pfg <pfg@FreeBSD.org> | 2013-02-10 19:49:37 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2013-02-10 19:49:37 +0000 |
commit | 1d9f9f37f8fee7e4d32feb20fde8706619e29f93 (patch) | |
tree | dbdaa0cb9c2f22e74badfb91f1eb9bbc81905096 /sys/fs/ext2fs/ext2_subr.c | |
parent | 329d8f638fe8ebf13e65dd27511850b3c32fba97 (diff) | |
download | FreeBSD-src-1d9f9f37f8fee7e4d32feb20fde8706619e29f93.zip FreeBSD-src-1d9f9f37f8fee7e4d32feb20fde8706619e29f93.tar.gz |
ext2fs: Use prototype declarations for function definitions
Submitted by: Christoph Mallon
MFC after: 2 weeks
Diffstat (limited to 'sys/fs/ext2fs/ext2_subr.c')
-rw-r--r-- | sys/fs/ext2fs/ext2_subr.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/fs/ext2fs/ext2_subr.c b/sys/fs/ext2fs/ext2_subr.c index b8d59bc..b5fc62b 100644 --- a/sys/fs/ext2fs/ext2_subr.c +++ b/sys/fs/ext2fs/ext2_subr.c @@ -63,11 +63,7 @@ void ext2_checkoverlap(struct buf *, struct inode *); * remaining space in the directory. */ int -ext2_blkatoff(vp, offset, res, bpp) - struct vnode *vp; - off_t offset; - char **res; - struct buf **bpp; +ext2_blkatoff(struct vnode *vp, off_t offset, char **res, struct buf **bpp) { struct inode *ip; struct m_ext2fs *fs; @@ -93,9 +89,7 @@ ext2_blkatoff(vp, offset, res, bpp) #ifdef KDB void -ext2_checkoverlap(bp, ip) - struct buf *bp; - struct inode *ip; +ext2_checkoverlap(struct buf *bp, struct inode *ip) { struct buf *ebp, *ep; int32_t start, last; |