输入子系统


static inline __must_check long __copy_to_user(void __user *to, const void *from, unsigned long n)
{
    memcpy((void __force *)to, from, n);
    return 0;
}


 
原文地址:https://www.cnblogs.com/mayplestory/p/7810417.html