blob: f247d6d2137c4515678052565b1ab43a29c523e2 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
2 * Copyright (C) 2017 Zihao Yu
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/export.h>
10#include <linux/uaccess.h>
11
12/*
13 * Assembly functions that may be used (directly or indirectly) by modules
14 */
15EXPORT_SYMBOL(__clear_user);
16EXPORT_SYMBOL(__asm_copy_to_user);
17EXPORT_SYMBOL(__asm_copy_from_user);
18EXPORT_SYMBOL(memset);
19EXPORT_SYMBOL(memcpy);