1/* Public domain. */
2
3#ifndef _LINUX_SORT_H
4#define _LINUX_SORT_H
5
6#include <linux/types.h>
7
8void sort(void *, size_t, size_t, int (*)(const void *, const void *), void *);
9
10#endif
11