1 /* 2 ** Copyright 2001-2002, Thomas Kurschel. All rights reserved. 3 ** Distributed under the terms of the NewOS License. 4 */ 5 6 #ifndef _KERNEL_MODULE_H 7 #define _KERNEL_MODULE_H 8 9 #include <drivers/module.h> 10 #include <kernel.h> 11 12 struct kernel_args; 13 14 extern status_t module_init(struct kernel_args *args); 15 extern void module_test(void); 16 17 #endif /* _KRENEL_MODULE_H */ 18