Subversion Repositories Kolibri OS

Rev

Rev 4103 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3031 serge 1
#ifndef _LINUX_EXPORT_H
2
#define _LINUX_EXPORT_H
3
/*
4
 * Export symbols from the kernel to modules.  Forked from module.h
5
 * to reduce the amount of pointless cruft we feed to gcc when only
6
 * exporting a simple symbol or two.
7
 *
8
 * If you feel the need to add #include  to this file
9
 * then you are doing something wrong and should go away silently.
10
 */
11
#define EXPORT_SYMBOL(sym)
12
#define EXPORT_SYMBOL_GPL(sym)
13
#define EXPORT_SYMBOL_GPL_FUTURE(sym)
14
#define EXPORT_UNUSED_SYMBOL(sym)
15
#define EXPORT_UNUSED_SYMBOL_GPL(sym)
16
 
17
#define THIS_MODULE ((struct module *)0)
18
 
19
#endif /* _LINUX_EXPORT_H */