forked from KolibriOS/kolibrios
99ca1d651b
git-svn-id: svn://kolibrios.org@1970 a494cfbc-eb01-0410-851d-a64ba20cac60
26 lines
495 B
C
26 lines
495 B
C
#ifndef _LINUX_MODULE_H
|
|
#define _LINUX_MODULE_H
|
|
/*
|
|
* Dynamic loading of modules into the kernel.
|
|
*
|
|
* Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
|
|
* Rewritten again by Rusty Russell, 2002
|
|
*/
|
|
#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 */
|