Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8388
b: refs/heads/master
c: ecec4cb
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Sep 10, 2005
1 parent ebb3e3b commit 5581faa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 207f36eec9e7b1077d7a0aaadb4800e2c9b4cfa4
refs/heads/master: ecec4cb7a9df5f61fe00710d2f2c69ce9a3b1d40
5 changes: 3 additions & 2 deletions trunk/lib/sort.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 5581faa

Please sign in to comment.