blob: f993959647b56581ba5d83133d9f48ced0d9e15b [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);
11#ifdef CONFIG_PPC32
12EXPORT_SYMBOL(cacheable_memcpy);
13EXPORT_SYMBOL(cacheable_memzero);
14#endif
15
16EXPORT_SYMBOL(strcpy);
17EXPORT_SYMBOL(strncpy);
18EXPORT_SYMBOL(strcat);
19EXPORT_SYMBOL(strlen);
20EXPORT_SYMBOL(strcmp);
21EXPORT_SYMBOL(strncmp);
22
23#ifndef CONFIG_GENERIC_CSUM
24EXPORT_SYMBOL(csum_partial);
25EXPORT_SYMBOL(csum_partial_copy_generic);
26EXPORT_SYMBOL(ip_fast_csum);
27EXPORT_SYMBOL(csum_tcpudp_magic);
28#endif
29
30EXPORT_SYMBOL(__copy_tofrom_user);
31EXPORT_SYMBOL(__clear_user);
32EXPORT_SYMBOL(copy_page);
33
34#ifdef CONFIG_PPC64
35EXPORT_SYMBOL(__arch_hweight8);
36EXPORT_SYMBOL(__arch_hweight16);
37EXPORT_SYMBOL(__arch_hweight32);
38EXPORT_SYMBOL(__arch_hweight64);
39#endif