1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 2017 Zihao Yu 4 */ 5 6 #include <linux/export.h> 7 #include <linux/uaccess.h> 8 9 /* 10 * Assembly functions that may be used (directly or indirectly) by modules 11 */ 12 EXPORT_SYMBOL(memset); 13 EXPORT_SYMBOL(memcpy); 14 EXPORT_SYMBOL(memmove); 15 EXPORT_SYMBOL(strcmp); 16 EXPORT_SYMBOL(strlen); 17 EXPORT_SYMBOL(strncmp); 18 EXPORT_SYMBOL(__memset); 19 EXPORT_SYMBOL(__memcpy); 20 EXPORT_SYMBOL(__memmove); 21