errno.c

来自「Nucleus Common Library for Integrator 」· C语言 代码 · 共 43 行

C
43
字号
/*************************************************************************
*
*               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.                                             
*
*************************************************************************/

/*************************************************************************
* FILE NAME                                     VERSION
*
*       errno.c                                 Nucleus Common Library 1.1
*
* DESCRIPTION
*
*       This contains the errno declaration.
*
* DATA STRUCTURES
*
*       errno.
*
* FUNCTIONS
*
*       none
*
* DEPENDENCIES
*
*       ncl.h
*
************************************************************************/

#define NU_NCL_SOURCE_FILE

#include "ncl\inc\ncl.h"

int errno;     /* initial value of zero is implicit instead of explicit */
               /* so errno is in region "ram" instead of region "data"  */
               /* See "include/errno.h" for possible values.*/

⌨️ 快捷键说明

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