Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / include / linux / sort.h
diff --git a/kernel/include/linux/sort.h b/kernel/include/linux/sort.h
new file mode 100644 (file)
index 0000000..d534da2
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef _LINUX_SORT_H
+#define _LINUX_SORT_H
+
+#include <linux/types.h>
+
+void sort(void *base, size_t num, size_t size,
+         int (*cmp)(const void *, const void *),
+         void (*swap)(void *, void *, int));
+
+#endif