Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | |
| 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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
| 8 | /* The following are special because they're not called |
| 9 | explicitly (the C compiler generates them). Fortunately, |
| 10 | their interface isn't gonna change any time soon now, so |
| 11 | it's OK to leave it out of version control. */ |
| 12 | EXPORT_SYMBOL(__ashldi3); |
| 13 | EXPORT_SYMBOL(__ashrdi3); |
| 14 | EXPORT_SYMBOL(__lshrdi3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | EXPORT_SYMBOL(__muldi3); |
| 16 | |