blob: 6fc69c74fe2eec9b8c9c646baeffd8fe22942997 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <asm/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4asmlinkage long long __ashldi3 (long long, int);
5asmlinkage long long __ashrdi3 (long long, int);
6asmlinkage long long __lshrdi3 (long long, int);
7asmlinkage long long __muldi3 (long long, long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9/* The following are special because they're not called
10 explicitly (the C compiler generates them). Fortunately,
11 their interface isn't gonna change any time soon now, so
12 it's OK to leave it out of version control. */
13EXPORT_SYMBOL(__ashldi3);
14EXPORT_SYMBOL(__ashrdi3);
15EXPORT_SYMBOL(__lshrdi3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016EXPORT_SYMBOL(__muldi3);
17
18EXPORT_SYMBOL(__down_failed);
19EXPORT_SYMBOL(__down_failed_interruptible);
20EXPORT_SYMBOL(__down_failed_trylock);
21EXPORT_SYMBOL(__up_wakeup);
22