Subversion Repositories Kolibri OS

Rev

Rev 3031 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  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.  * Try not to add #includes here.  It slows compilation and makes kernel
  9.  * hackers place grumpy comments in header files.
  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 */
  20.