m68k_ksyms.c 729 B

12345678910111213141516171819202122
  1. #include <linux/module.h>
  2. #include <asm/semaphore.h>
  3. asmlinkage long long __ashldi3 (long long, int);
  4. asmlinkage long long __ashrdi3 (long long, int);
  5. asmlinkage long long __lshrdi3 (long long, int);
  6. asmlinkage long long __muldi3 (long long, long long);
  7. /* The following are special because they're not called
  8. explicitly (the C compiler generates them). Fortunately,
  9. their interface isn't gonna change any time soon now, so
  10. it's OK to leave it out of version control. */
  11. EXPORT_SYMBOL(__ashldi3);
  12. EXPORT_SYMBOL(__ashrdi3);
  13. EXPORT_SYMBOL(__lshrdi3);
  14. EXPORT_SYMBOL(__muldi3);
  15. EXPORT_SYMBOL(__down_failed);
  16. EXPORT_SYMBOL(__down_failed_interruptible);
  17. EXPORT_SYMBOL(__down_failed_trylock);
  18. EXPORT_SYMBOL(__up_wakeup);