ksyms.c 290 字节
Newer Older
1 2 3
#include <linux/module.h>
#include <asm/string.h>
#include <asm/checksum.h>
4 5

/*XXX: we need them because they would be exported by x86_64 */
6 7 8
#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) || __GNUC__ > 4
EXPORT_SYMBOL(memcpy);
#else
9
EXPORT_SYMBOL(__memcpy);
10
#endif
11
EXPORT_SYMBOL(csum_partial);