dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / kmod-info / foo.c
1
2 #include "kmod.h"
3
4 int startKext() {
5 return 0;
6 }
7 int endKext() {
8 return 0;
9 }
10
11 KMOD_EXPLICIT_DECL(com.apple.foo, "1.0.0", startKext, endKext)
12
13 int bar() {
14 return 0;
15 }