diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-09-10 00:26:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 10:06:31 -0700 |
commit | ecec4cb7a9df5f61fe00710d2f2c69ce9a3b1d40 (patch) | |
tree | b6a378836cf863f81b1f5a32a2e747c38524af4e | |
parent | 207f36eec9e7b1077d7a0aaadb4800e2c9b4cfa4 (diff) | |
download | linux-ecec4cb7a9df5f61fe00710d2f2c69ce9a3b1d40.tar.gz linux-ecec4cb7a9df5f61fe00710d2f2c69ce9a3b1d40.tar.bz2 linux-ecec4cb7a9df5f61fe00710d2f2c69ce9a3b1d40.zip |
[PATCH] lib/sort.c: small cleanups
This patch contains the following small cleanups:
- make two needlessly global functions static
- every file should #include the header files containing the prototypes
of it's global functions
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | lib/sort.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sort.c b/lib/sort.c index b73dbb0e7c83..ddc4d35df289 100644 --- a/lib/sort.c +++ b/lib/sort.c @@ -6,15 +6,16 @@ #include <linux/kernel.h> #include <linux/module.h> +#include <linux/sort.h> -void u32_swap(void *a, void *b, int size) +static void u32_swap(void *a, void *b, int size) { u32 t = *(u32 *)a; *(u32 *)a = *(u32 *)b; *(u32 *)b = t; } -void generic_swap(void *a, void *b, int size) +static void generic_swap(void *a, void *b, int size) { char t; |