btrfs-progs: gitignore: Ignore *.restored test image
[platform/upstream/btrfs-progs.git] / kernel-lib / list_sort.h
1 /*
2  * taken from linux kernel include/list_sort.h
3  */
4 #ifndef _LINUX_LIST_SORT_H
5 #define _LINUX_LIST_SORT_H
6
7 #include "kerncompat.h"
8
9 struct list_head;
10
11 void list_sort(void *priv, struct list_head *head,
12                int (*cmp)(void *priv, struct list_head *a,
13                           struct list_head *b));
14 #endif