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
parent e898893399
commit 5c72513843
4 changed files with 8 additions and 8 deletions

View File

@ -31,13 +31,13 @@
#include "flask.h"
void usage(char *name)
static void usage(char *name)
{
printf("usage: %s [-m] policy_file context_file\n", name);
exit(1);
}
void find_common_name(char *cname, char *dest, int len)
static void find_common_name(char *cname, char *dest, int len)
{
char *start, *end;