diff options
author | Trevor Keith <tsrk@tsrk.net> | 2009-09-22 19:43:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 10:39:28 -0400 |
commit | 5c725138437837291db5c25f4a076ee852e806e3 (patch) | |
tree | ddd05a26b2aa65a7508546b22235dffa2f41f54f /scripts/selinux | |
parent | e898893399335514b10dfbd75598f8308976abe4 (diff) |
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>
Diffstat (limited to 'scripts/selinux')
-rw-r--r-- | scripts/selinux/mdp/mdp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/selinux/mdp/mdp.c b/scripts/selinux/mdp/mdp.c index ca757d486187..b4ced8562587 100644 --- a/scripts/selinux/mdp/mdp.c +++ b/scripts/selinux/mdp/mdp.c | |||
@@ -31,13 +31,13 @@ | |||
31 | 31 | ||
32 | #include "flask.h" | 32 | #include "flask.h" |
33 | 33 | ||
34 | void usage(char *name) | 34 | static void usage(char *name) |
35 | { | 35 | { |
36 | printf("usage: %s [-m] policy_file context_file\n", name); | 36 | printf("usage: %s [-m] policy_file context_file\n", name); |
37 | exit(1); | 37 | exit(1); |
38 | } | 38 | } |
39 | 39 | ||
40 | void find_common_name(char *cname, char *dest, int len) | 40 | static void find_common_name(char *cname, char *dest, int len) |
41 | { | 41 | { |
42 | char *start, *end; | 42 | char *start, *end; |
43 | 43 | ||