MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / sort.h
blobd534da2b55750983571987b33761e09da71babc4
1 #ifndef _LINUX_SORT_H
2 #define _LINUX_SORT_H
4 #include <linux/types.h>
6 void sort(void *base, size_t num, size_t size,
7 int (*cmp)(const void *, const void *),
8 void (*swap)(void *, void *, int));
10 #endif