1#include <linux/string.h> 2#include <linux/uaccess.h> 3#include <linux/bitops.h> 4#include <net/checksum.h> 5 6EXPORT_SYMBOL(memcpy); 7EXPORT_SYMBOL(memset); 8EXPORT_SYMBOL(memmove); 9EXPORT_SYMBOL(memcmp); 10EXPORT_SYMBOL(memchr); 11 12EXPORT_SYMBOL(strncpy); 13EXPORT_SYMBOL(strncmp); 14 15#ifndef CONFIG_GENERIC_CSUM 16EXPORT_SYMBOL(__csum_partial); 17EXPORT_SYMBOL(csum_partial_copy_generic); 18#endif 19 20EXPORT_SYMBOL(__copy_tofrom_user); 21EXPORT_SYMBOL(__clear_user); 22EXPORT_SYMBOL(copy_page); 23 24#ifdef CONFIG_PPC64 25EXPORT_SYMBOL(__arch_hweight8); 26EXPORT_SYMBOL(__arch_hweight16); 27EXPORT_SYMBOL(__arch_hweight32); 28EXPORT_SYMBOL(__arch_hweight64); 29#endif 30