1 #include <linux/module.h>
2 #include <linux/linkage.h>
3 #include <linux/sched.h>
4 #include <linux/string.h>
6 #include <linux/user.h>
7 #include <linux/elfcore.h>
9 #include <linux/interrupt.h>
11 #include <asm/pgalloc.h>
14 #include <asm/semaphore.h>
15 #include <asm/checksum.h>
16 #include <asm/current.h>
19 extern void *trap_table
;
20 EXPORT_SYMBOL (trap_table
);
22 /* platform dependent support */
23 EXPORT_SYMBOL (kernel_thread
);
24 EXPORT_SYMBOL (__bug
);
26 /* Networking helper routines. */
27 EXPORT_SYMBOL (csum_partial_copy_nocheck
);
28 EXPORT_SYMBOL (csum_partial_copy_from_user
);
29 EXPORT_SYMBOL (ip_compute_csum
);
30 EXPORT_SYMBOL (ip_fast_csum
);
32 /* string / mem functions */
33 EXPORT_SYMBOL (memset
);
34 EXPORT_SYMBOL (memcpy
);
35 EXPORT_SYMBOL (memmove
);
38 EXPORT_SYMBOL (__down
);
39 EXPORT_SYMBOL (__down_interruptible
);
40 EXPORT_SYMBOL (__down_trylock
);
44 * libgcc functions - functions that are used internally by the
45 * compiler... (prototypes are not correct though, but that
46 * doesn't really matter since they're not versioned).
48 extern void __ashldi3 (void);
49 extern void __ashrdi3 (void);
50 extern void __lshrdi3 (void);
51 extern void __muldi3 (void);
52 extern void __negdi2 (void);
54 EXPORT_SYMBOL (__ashldi3
);
55 EXPORT_SYMBOL (__ashrdi3
);
56 EXPORT_SYMBOL (__lshrdi3
);
57 EXPORT_SYMBOL (__muldi3
);
58 EXPORT_SYMBOL (__negdi2
);