Fix all -Wmissing-prototypes warnings in x86 defconfig

Signed-off-by: Trevor Keith <tsrk@tsrk.net>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Trevor Keith
2009-09-22 16:43:38 -07:00
committed by Linus Torvalds
父節點 e898893399
當前提交 5c72513843
共有 4 個文件被更改,包括 8 次插入8 次删除

查看文件

@@ -24,14 +24,14 @@
typedef unsigned short unicode;
void usage(char *argv0)
static void usage(char *argv0)
{
fprintf(stderr, "Usage: \n"
" %s chartable [hashsize] [hashstep] [maxhashlevel]\n", argv0);
exit(EX_USAGE);
}
int getunicode(char **p0)
static int getunicode(char **p0)
{
char *p = *p0;
@@ -49,7 +49,7 @@ unicode unitable[MAX_FONTLEN][255];
/* Massive overkill, but who cares? */
int unicount[MAX_FONTLEN];
void addpair(int fp, int un)
static void addpair(int fp, int un)
{
int i;