forked from KolibriOS/kolibrios
8a4553d3a9
git-svn-id: svn://kolibrios.org@6934 a494cfbc-eb01-0410-851d-a64ba20cac60
29 lines
850 B
C
29 lines
850 B
C
#ifndef _LINUX_EXPORT_H
|
|
#define _LINUX_EXPORT_H
|
|
/*
|
|
* Export symbols from the kernel to modules. Forked from module.h
|
|
* to reduce the amount of pointless cruft we feed to gcc when only
|
|
* exporting a simple symbol or two.
|
|
*
|
|
* Try not to add #includes here. It slows compilation and makes kernel
|
|
* hackers place grumpy comments in header files.
|
|
*/
|
|
|
|
/* Some toolchains use a `_' prefix for all user symbols. */
|
|
#ifdef CONFIG_HAVE_UNDERSCORE_SYMBOL_PREFIX
|
|
#define __VMLINUX_SYMBOL(x) _##x
|
|
#define __VMLINUX_SYMBOL_STR(x) "_" #x
|
|
#else
|
|
#define __VMLINUX_SYMBOL(x) x
|
|
#define __VMLINUX_SYMBOL_STR(x) #x
|
|
#endif
|
|
#define EXPORT_SYMBOL(sym)
|
|
#define EXPORT_SYMBOL_GPL(sym)
|
|
#define EXPORT_SYMBOL_GPL_FUTURE(sym)
|
|
#define EXPORT_UNUSED_SYMBOL(sym)
|
|
#define EXPORT_UNUSED_SYMBOL_GPL(sym)
|
|
|
|
#define THIS_MODULE ((struct module *)0)
|
|
|
|
#endif /* _LINUX_EXPORT_H */
|