2017-07-11 09:07:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Zihao Yu
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/export.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Assembly functions that may be used (directly or indirectly) by modules
|
|
|
|
*/
|
2017-11-30 09:55:16 +08:00
|
|
|
EXPORT_SYMBOL(__clear_user);
|
2017-07-11 09:07:09 +08:00
|
|
|
EXPORT_SYMBOL(__copy_user);
|
2017-11-30 09:55:16 +08:00
|
|
|
EXPORT_SYMBOL(memset);
|
|
|
|
EXPORT_SYMBOL(memcpy);
|