https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 070ad6b813834ae1486c6d1fb96d275472f33032 authored by Jason Self on 11 June 2014, 08:11:55 UTC
Linux-libre 3.12.22-gnu
Tip revision: 070ad6b
ksyms.c
#include <linux/module.h>
#include <asm/string.h>
#include <asm/checksum.h>

#ifndef CONFIG_X86_32
/*XXX: we need them because they would be exported by x86_64 */
#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) || __GNUC__ > 4
EXPORT_SYMBOL(memcpy);
#else
EXPORT_SYMBOL(__memcpy);
#endif
#endif
EXPORT_SYMBOL(csum_partial);
back to top