📄 errno.h
字号:
/*************************************************************************** Copyright Mentor Graphics Corporation 2002 * All Rights Reserved. * * THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS * THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS * SUBJECT TO LICENSE TERMS. **************************************************************************//*************************************************************************** FILENAME VERSION** ERRNO.H Nucleus Common Library 1.1** DESCRIPTION** Some functions use this global variable to track errors. The* computations are reentrant, but this error reporting scheme is* not. Use at own risk!!** DATA STRUCTURES** none** DEPENDENCIES** ncl.h**************************************************************************/#ifndef ERRNO_H#define ERRNO_H#define NU_NCL_SOURCE_FILE#include "ncl\inc\ncl.h"#define EDOM 33#define ERANGE 34extern int errno; /* Externally defined in errno.c. Note that this must not be relied on in multitasking situations... Examine at your own risk! */#undef NU_NCL_SOURCE_FILE#endif /* ERRNO_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -