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