blob: 9b611b0dc51ca249ae7687fa9c0b3ad193a17e24 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001// Copyright (c) 2015 Google Inc. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <sys/systm.h>
6#include <mach/mach_types.h>
7
8kern_return_t GypKext_start(kmod_info_t* ki, void* d) {
9 printf("GypKext has started.\n");
10 return KERN_SUCCESS;
11}
12
13kern_return_t GypKext_stop(kmod_info_t* ki, void* d) {
14 printf("GypKext has stopped.\n");
15 return KERN_SUCCESS;
16}