| Michal Simek | f6b165c | 2009-03-27 14:25:17 +0100 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu> | 
 | 3 |  * Copyright (C) 2008-2009 PetaLogix | 
 | 4 |  * | 
 | 5 |  * This program is free software; you can redistribute it and/or modify | 
 | 6 |  * it under the terms of the GNU General Public License version 2 as | 
 | 7 |  * published by the Free Software Foundation. | 
 | 8 |  */ | 
 | 9 |  | 
 | 10 | #include <linux/module.h> | 
 | 11 | #include <linux/string.h> | 
 | 12 | #include <linux/cryptohash.h> | 
 | 13 | #include <linux/delay.h> | 
 | 14 | #include <linux/in6.h> | 
 | 15 | #include <linux/syscalls.h> | 
 | 16 |  | 
 | 17 | #include <asm/checksum.h> | 
 | 18 | #include <linux/io.h> | 
 | 19 | #include <asm/page.h> | 
 | 20 | #include <asm/system.h> | 
 | 21 | #include <linux/uaccess.h> | 
 | 22 |  | 
 | 23 | /* | 
 | 24 |  * libgcc functions - functions that are used internally by the | 
 | 25 |  * compiler... (prototypes are not correct though, but that | 
 | 26 |  * doesn't really matter since they're not versioned). | 
 | 27 |  */ | 
 | 28 | extern void __ashldi3(void); | 
 | 29 | EXPORT_SYMBOL(__ashldi3); | 
 | 30 | extern void __ashrdi3(void); | 
 | 31 | EXPORT_SYMBOL(__ashrdi3); | 
 | 32 | extern void __divsi3(void); | 
 | 33 | EXPORT_SYMBOL(__divsi3); | 
 | 34 | extern void __lshrdi3(void); | 
 | 35 | EXPORT_SYMBOL(__lshrdi3); | 
 | 36 | extern void __modsi3(void); | 
 | 37 | EXPORT_SYMBOL(__modsi3); | 
 | 38 | extern void __mulsi3(void); | 
 | 39 | EXPORT_SYMBOL(__mulsi3); | 
 | 40 | extern void __muldi3(void); | 
 | 41 | EXPORT_SYMBOL(__muldi3); | 
 | 42 | extern void __ucmpdi2(void); | 
 | 43 | EXPORT_SYMBOL(__ucmpdi2); | 
 | 44 | extern void __udivsi3(void); | 
 | 45 | EXPORT_SYMBOL(__udivsi3); | 
 | 46 | extern void __umodsi3(void); | 
 | 47 | EXPORT_SYMBOL(__umodsi3); | 
| Arnd Bergmann | 5af7fa6 | 2009-05-01 21:48:15 +0000 | [diff] [blame] | 48 | extern char *_ebss; | 
 | 49 | EXPORT_SYMBOL_GPL(_ebss); |