mirror of
https://review.haiku-os.org/haiku
synced 2025-02-02 11:46:25 +01:00
16 lines
353 B
C
16 lines
353 B
C
|
/*
|
||
|
** Copyright 2001-2002, Thomas Kurschel. All rights reserved.
|
||
|
** Distributed under the terms of the NewOS License.
|
||
|
*/
|
||
|
|
||
|
#ifndef _KERNEL_MODULE_H
|
||
|
#define _KERNEL_MODULE_H
|
||
|
|
||
|
#include <drivers/module.h>
|
||
|
#include <kernel.h>
|
||
|
#include <stage2.h>
|
||
|
|
||
|
extern status_t module_init(kernel_args *ka, module_info **sys_module_headers);
|
||
|
|
||
|
#endif /* _KRENEL_MODULE_H */
|