mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
ea19fbed05
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@44 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
9 lines
163 B
C
9 lines
163 B
C
#ifndef _SPL_QSORT_H
|
|
#define _SPL_QSORT_H
|
|
|
|
#include <linux/sort.h>
|
|
|
|
#define qsort(base, num, size, cmp) sort(base, num, size, cmp, NULL)
|
|
|
|
#endif /* SPL_QSORT_H */
|