]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/testkext/pgokext/pgokext.c
xnu-6153.141.1.tar.gz
[apple/xnu.git] / tools / tests / testkext / pgokext / pgokext.c
1 //
2 // pgokext.c
3 // pgokext
4 //
5 // Created by Lawrence D'Anna on 12/15/16.
6 //
7 //
8
9 #include <mach/mach_types.h>
10
11 kern_return_t pgokext_start(kmod_info_t * ki, void *d);
12 kern_return_t pgokext_stop(kmod_info_t *ki, void *d);
13
14 kern_return_t
15 pgokext_start(kmod_info_t * ki, void *d)
16 {
17 return KERN_SUCCESS;
18 }
19
20 kern_return_t
21 pgokext_stop(kmod_info_t *ki, void *d)
22 {
23 return KERN_SUCCESS;
24 }