uaccess.h

来自「sigma yamon yamon-src-02[1].06.tar.gz」· C头文件 代码 · 共 22 行

H
22
字号
/* $Id: uaccess.h,v 1.2 2002/02/01 12:10:00 kjelde Exp $ * * This file is subject to the terms and conditions of the GNU General Public * License.  See the file "COPYING" in the main directory of this archive * for more details. * * Kjeld Borch Egevang * Copyright (C) 2002 MIPS Technologies, Inc.  All rights reserved. */#define __get_user(w, a)	((w = *(a))*0)#define get_user		__get_user#define __put_user(w, a)	((*(a) = w)*0)#define put_user		__put_user#define force_sig(x,y)#define VERIFY_READ    0#define VERIFY_WRITE   1#define EFAULT	-1#define verify_area(t,a,s)	0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?