Subversion Repositories Kolibri OS

Rev

Rev 3031 | Go to most recent revision | Details | Compare with Previous | 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
 *
4103 Serge 8
 * Try not to add #includes here.  It slows compilation and makes kernel
9
 * hackers place grumpy comments in header files.
3031 serge 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 */