/* * This file is produced automatically. * Do not modify anything in here by hand. * * Created from source file * hello_if.m * with * /usr/src/sys/kern/makeobjops.pl * * See the source file for legal information */ #include #include #include #include #include #include "hello_if.h" static void null_world(kobj_t o) { printf("hello default world!\n"); } struct kobjop_desc hello_world_desc = { 0, (kobjop_t) null_world }; struct kobjop_desc hello_static_world_desc = { 0, (kobjop_t) 0 };