blob: 6d10a91eb799f62a6f2d6a5f6ff796ae7aa83b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __UTEST_KERNEL__
#define __UTEST_KERNEL__
#include <check.h>
#ifdef __cplusplus
extern "C" {
#endif
TCase *cl_kernel_tcase_create(void);
#ifdef __cplusplus
}
#endif
#endif
|