Declare functions as static and move global variables to the top;

no functional changes.
This commit is contained in:
Edward Tomasz Napierala 2012-10-28 19:38:42 +00:00
parent 77339e1cdc
commit 05d43d9882
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242265

View File

@ -70,14 +70,16 @@ __FBSDID("$FreeBSD$");
/* the optimization warning string template */
#define OPTWARN "should optimize for %s with minfree %s %d%%"
static int blocks;
static char clrbuf[MAXBSIZE];
static struct uufsd disk;
#define sblock disk.d_fs
void usage(void);
void printfs(void);
int journal_alloc(int64_t size);
void journal_clear(void);
void sbdirty(void);
static void usage(void);
static void printfs(void);
static int journal_alloc(int64_t size);
static void journal_clear(void);
static void sbdirty(void);
int
main(int argc, char *argv[])
@ -545,16 +547,13 @@ main(int argc, char *argv[])
err(12, "%s", special);
}
void
static void
sbdirty(void)
{
disk.d_fs.fs_flags |= FS_UNCLEAN | FS_NEEDSFSCK;
disk.d_fs.fs_clean = 0;
}
static int blocks;
static char clrbuf[MAXBSIZE];
static ufs2_daddr_t
journal_balloc(void)
{
@ -880,7 +879,7 @@ indir_fill(ufs2_daddr_t blk, int level, int *resid)
/*
* Clear the flag bits so the journal can be removed.
*/
void
static void
journal_clear(void)
{
struct ufs1_dinode *dp1;
@ -911,7 +910,7 @@ journal_clear(void)
}
}
int
static int
journal_alloc(int64_t size)
{
struct ufs1_dinode *dp1;
@ -1060,7 +1059,7 @@ journal_alloc(int64_t size)
return (-1);
}
void
static void
usage(void)
{
fprintf(stderr, "%s\n%s\n%s\n%s\n%s\n%s\n",
@ -1073,7 +1072,7 @@ usage(void)
exit(2);
}
void
static void
printfs(void)
{
warnx("POSIX.1e ACLs: (-a) %s",