A cleanup patch from Jeff Garzik to static-ify a number of
namespace polluting things that really should be static.
This commit is contained in:
@@ -132,7 +132,7 @@ struct fb_var_screeninfo {
|
||||
};
|
||||
|
||||
|
||||
struct cmdoptions_t {
|
||||
static struct cmdoptions_t {
|
||||
char *name;
|
||||
unsigned char param_count;
|
||||
unsigned char code;
|
||||
|
||||
@@ -701,7 +701,7 @@ static void read_tables(void)
|
||||
}
|
||||
}
|
||||
|
||||
struct minix_inode *get_inode(unsigned int nr)
|
||||
static struct minix_inode *get_inode(unsigned int nr)
|
||||
{
|
||||
struct minix_inode *inode;
|
||||
|
||||
@@ -749,7 +749,7 @@ struct minix_inode *get_inode(unsigned int nr)
|
||||
}
|
||||
|
||||
#ifdef BB_FEATURE_MINIX2
|
||||
struct minix2_inode *get_inode2(unsigned int nr)
|
||||
static struct minix2_inode *get_inode2(unsigned int nr)
|
||||
{
|
||||
struct minix2_inode *inode;
|
||||
|
||||
|
||||
@@ -62,20 +62,19 @@ typedef enum {BASH,TCSH} shell_t;
|
||||
|
||||
|
||||
/* Some global variables that tells us how to parse. */
|
||||
shell_t shell=BASH; /* The shell we generate output for. */
|
||||
int quiet_errors=0; /* 0 is not quiet. */
|
||||
int quiet_output=0; /* 0 is not quiet. */
|
||||
int quote=1; /* 1 is do quote. */
|
||||
int alternative=0; /* 0 is getopt_long, 1 is getopt_long_only */
|
||||
static shell_t shell=BASH; /* The shell we generate output for. */
|
||||
static int quiet_errors=0; /* 0 is not quiet. */
|
||||
static int quiet_output=0; /* 0 is not quiet. */
|
||||
static int quote=1; /* 1 is do quote. */
|
||||
static int alternative=0; /* 0 is getopt_long, 1 is getopt_long_only */
|
||||
|
||||
/* Function prototypes */
|
||||
const char *normalize(const char *arg);
|
||||
int generate_output(char * argv[],int argc,const char *optstr,
|
||||
static const char *normalize(const char *arg);
|
||||
static int generate_output(char * argv[],int argc,const char *optstr,
|
||||
const struct option *longopts);
|
||||
void add_long_options(char *options);
|
||||
void add_longopt(const char *name,int has_arg);
|
||||
void set_shell(const char *new_shell);
|
||||
void set_initial_shell(void);
|
||||
static void add_long_options(char *options);
|
||||
static void add_longopt(const char *name,int has_arg);
|
||||
static void set_shell(const char *new_shell);
|
||||
|
||||
|
||||
/*
|
||||
|
||||
@@ -609,7 +609,7 @@ static void setup_tables(void)
|
||||
* Perform a test of a block; return the number of
|
||||
* blocks readable/writeable.
|
||||
*/
|
||||
long do_check(char *buffer, int try, unsigned int current_block)
|
||||
static long do_check(char *buffer, int try, unsigned int current_block)
|
||||
{
|
||||
long got;
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@ static int version = -1;
|
||||
static int pagesize;
|
||||
static int *signature_page;
|
||||
|
||||
struct swap_header_v1 {
|
||||
static struct swap_header_v1 {
|
||||
char bootbits[1024]; /* Space for disklabel etc. */
|
||||
unsigned int version;
|
||||
unsigned int last_page;
|
||||
|
||||
@@ -231,7 +231,7 @@ parse_mount_options(char *options, int *flags, char *strflags)
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
mount_one(char *blockDevice, char *directory, char *filesystemType,
|
||||
unsigned long flags, char *string_flags, int useMtab, int fakeIt,
|
||||
char *mtab_opts, int whineOnErrors)
|
||||
|
||||
@@ -886,7 +886,7 @@ static char *nfs_strerror(int stat)
|
||||
return buf;
|
||||
}
|
||||
|
||||
bool_t
|
||||
static bool_t
|
||||
xdr_fhandle (XDR *xdrs, fhandle objp)
|
||||
{
|
||||
//register int32_t *buf;
|
||||
|
||||
@@ -39,10 +39,10 @@
|
||||
|
||||
static const int RFC_868_BIAS = 2208988800UL;
|
||||
|
||||
int setdate= 0;
|
||||
int printdate= 0;
|
||||
static int setdate= 0;
|
||||
static int printdate= 0;
|
||||
|
||||
time_t askremotedate(char *host)
|
||||
static time_t askremotedate(char *host)
|
||||
{
|
||||
struct hostent *h;
|
||||
struct sockaddr_in sin;
|
||||
|
||||
@@ -33,8 +33,8 @@
|
||||
#include <linux/unistd.h>
|
||||
#include "busybox.h"
|
||||
|
||||
_syscall2(int, swapon, const char *, path, int, flags);
|
||||
_syscall1(int, swapoff, const char *, path);
|
||||
static _syscall2(int, swapon, const char *, path, int, flags);
|
||||
static _syscall1(int, swapoff, const char *, path);
|
||||
|
||||
|
||||
static int whichApp;
|
||||
|
||||
Reference in New Issue
Block a user