]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/testkext/pgokext/pgokext.c
xnu-4570.51.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 pgokext_start(kmod_info_t * ki, void *d)
15 {
16 return KERN_SUCCESS;
17 }
18
19 kern_return_t pgokext_stop(kmod_info_t *ki, void *d)
20 {
21 return KERN_SUCCESS;
22 }