Add missing headers

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@44 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
This commit is contained in:
behlendo 2008-03-13 22:52:23 +00:00
parent 8ddd0ee415
commit ea19fbed05
2 changed files with 17 additions and 0 deletions

9
include/sys/sunldi.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef _SPL_SUNLDI_H
#define _SPL_SUNLDI_H
/* XXX: ALL TOTALLY BOGUS, JUST PLACE HOLDERS */
typedef int ddi_devid_t;
typedef int ldi_handle_t;
typedef int ldi_ident_t;
#endif /* SPL_SUNLDI_H */

8
include/util/qsort.h Normal file
View File

@ -0,0 +1,8 @@
#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 */