forked from KolibriOS/kolibrios
f7bc5f78ab
git-svn-id: svn://kolibrios.org@1430 a494cfbc-eb01-0410-851d-a64ba20cac60
23 lines
338 B
C
23 lines
338 B
C
|
|
#ifndef _LINUX_MODULE_H
|
|
#define _LINUX_MODULE_H
|
|
|
|
#include <linux/list.h>
|
|
#include <linux/compiler.h>
|
|
#include <linux/kernel.h>
|
|
|
|
|
|
#define EXPORT_SYMBOL(x)
|
|
|
|
#define MODULE_FIRMWARE(x)
|
|
|
|
|
|
#define MODULE_AUTHOR(x)
|
|
#define MODULE_DESCRIPTION(x)
|
|
#define MODULE_LICENSE(x)
|
|
|
|
struct module {};
|
|
|
|
#endif /* _LINUX_MODULE_H */
|
|
|