sort.h revision 1.2
1/* Public domain. */
2
3#ifndef _LINUX_SORT_H
4#define _LINUX_SORT_H
5
6void sort(void *, size_t, size_t, int (*)(const void *, const void *), void *);
7
8#endif
9