lerrno.h

来自「kaffe Java 解释器语言,源码,Java的子集系统,开放源代码」· C头文件 代码 · 共 39 行

H
39
字号
/* lerrno.h * Not all systems support all errnos - so define those which aren't used * to be harmless. * * Copyright (c) 1996, 1997 *	Transvirtual Technologies, Inc.  All rights reserved. * * See the file "license.terms" for information on usage and redistribution  * of this file.  */#ifndef __lerrno_h#define __lerrno_h#include <errno.h>#define	NOERRNO		100000#if !defined(EINPROGRESS)#define	EINPROGRESS	NOERRNO#endif#if !defined(EALREADY)#define	EALREADY	NOERRNO#endif#if !defined(EWOULDBLOCK)#define	EWOULDBLOCK	NOERRNO#endif#if !defined(EAGAIN)#define	EAGAIN		NOERRNO#endif#if !defined(EINTR)#define	EINTR		NOERRNO#endif#if !defined(EISCONN)#define	EISCONN		NOERRNO#endif#endif

⌨️ 快捷键说明

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