diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 |
commit | 76b5366091f76c9bc73570149ef5055648fc2c39 (patch) | |
tree | 590d020e0f2a5bea6e09d66d951a674443b21d67 /sys/gnu/ext2fs/ext2_subr.c | |
parent | 4b4d01da6f07f7754ff6a6e4f5223e9f0984d1a6 (diff) |
Notes
Diffstat (limited to 'sys/gnu/ext2fs/ext2_subr.c')
-rw-r--r-- | sys/gnu/ext2fs/ext2_subr.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/gnu/ext2fs/ext2_subr.c b/sys/gnu/ext2fs/ext2_subr.c index ed48acf46734..30da6a7300cb 100644 --- a/sys/gnu/ext2fs/ext2_subr.c +++ b/sys/gnu/ext2fs/ext2_subr.c @@ -52,11 +52,7 @@ #include <ufs/ufs/quota.h> #include <ufs/ufs/inode.h> -#include "opt_ddb.h" - -#ifdef DDB -void ext2_checkoverlap __P((struct buf *, struct inode *)); -#endif +static void ext2_checkoverlap __P((struct buf *, struct inode *)); /* * Return buffer with the contents of block "offset" from the beginning of @@ -92,8 +88,9 @@ ext2_blkatoff(vp, offset, res, bpp) return (0); } +#include "opt_ddb.h" #ifdef DDB -void +static void ext2_checkoverlap(bp, ip) struct buf *bp; struct inode *ip; |