/arch/um/sys-x86_64/ksyms.c
C | 11 lines | 9 code | 1 blank | 1 comment | 3 complexity | c193a4439310ad09a5c2f347bd1de878 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
1#include <linux/module.h> 2#include <asm/string.h> 3#include <asm/checksum.h> 4 5/*XXX: we need them because they would be exported by x86_64 */ 6#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) || __GNUC__ > 4 7EXPORT_SYMBOL(memcpy); 8#else 9EXPORT_SYMBOL(__memcpy); 10#endif 11EXPORT_SYMBOL(csum_partial);