23 lines
729 B
C
23 lines
729 B
C
|
#include <linux/module.h>
|
||
|
#include <asm/semaphore.h>
|
||
|
|
||
|
asmlinkage long long __ashldi3 (long long, int);
|
||
|
asmlinkage long long __ashrdi3 (long long, int);
|
||
|
asmlinkage long long __lshrdi3 (long long, int);
|
||
|
asmlinkage long long __muldi3 (long long, long long);
|
||
|
|
||
|
/* The following are special because they're not called
|
||
|
explicitly (the C compiler generates them). Fortunately,
|
||
|
their interface isn't gonna change any time soon now, so
|
||
|
it's OK to leave it out of version control. */
|
||
|
EXPORT_SYMBOL(__ashldi3);
|
||
|
EXPORT_SYMBOL(__ashrdi3);
|
||
|
EXPORT_SYMBOL(__lshrdi3);
|
||
|
EXPORT_SYMBOL(__muldi3);
|
||
|
|
||
|
EXPORT_SYMBOL(__down_failed);
|
||
|
EXPORT_SYMBOL(__down_failed_interruptible);
|
||
|
EXPORT_SYMBOL(__down_failed_trylock);
|
||
|
EXPORT_SYMBOL(__up_wakeup);
|
||
|
|