blob: c422812f74054e7e20442160eb65f77bf29bffa6 [file] [log] [blame]
Anton Blanchard7b20a952014-08-20 08:00:04 +10001#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);
Anton Blanchard7b20a952014-08-20 08:00:04 +100011
12EXPORT_SYMBOL(strcpy);
13EXPORT_SYMBOL(strncpy);
14EXPORT_SYMBOL(strcat);
15EXPORT_SYMBOL(strlen);
16EXPORT_SYMBOL(strcmp);
17EXPORT_SYMBOL(strncmp);
18
19#ifndef CONFIG_GENERIC_CSUM
Christophe Leroy7e393222016-03-07 18:44:37 +010020EXPORT_SYMBOL(__csum_partial);
Anton Blanchard7b20a952014-08-20 08:00:04 +100021EXPORT_SYMBOL(csum_partial_copy_generic);
Anton Blanchard7b20a952014-08-20 08:00:04 +100022#endif
23
24EXPORT_SYMBOL(__copy_tofrom_user);
25EXPORT_SYMBOL(__clear_user);
26EXPORT_SYMBOL(copy_page);
27
28#ifdef CONFIG_PPC64
29EXPORT_SYMBOL(__arch_hweight8);
30EXPORT_SYMBOL(__arch_hweight16);
31EXPORT_SYMBOL(__arch_hweight32);
32EXPORT_SYMBOL(__arch_hweight64);
33#endif