Linux-2.6.33.2/include/linux/sort.h

Compare this file to the similar file:
Show the results in this format:

#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