xref: /xnu-10063.121.3/tools/tests/testkext/pgokext/pgokext.c (revision 2c2f96dc2b9a4408a43d3150ae9c105355ca3daa)
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 pgokext_start(kmod_info_t * ki, void *d)
16 {
17 	return KERN_SUCCESS;
18 }
19 
20 kern_return_t
pgokext_stop(kmod_info_t * ki,void * d)21 pgokext_stop(kmod_info_t *ki, void *d)
22 {
23 	return KERN_SUCCESS;
24 }
25