blob: 4800cf703186d389a6fd3446e3339375f332ee74 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright (C) 2017 Zihao Yu
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004 */
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 */
12EXPORT_SYMBOL(__clear_user);
13EXPORT_SYMBOL(__asm_copy_to_user);
14EXPORT_SYMBOL(__asm_copy_from_user);
15EXPORT_SYMBOL(memset);
16EXPORT_SYMBOL(memcpy);