errno.c

来自「基于4个mips核的noc设计」· C语言 代码 · 共 16 行

C
16
字号
/* * lib-src/ansi/errno/errno.c * ANSI/ISO 9899-1990, Section 7.1.3. * * int errno; * * The global definition of errno is initialized with an explicit 0 here * so that LifeLib does not issue pages of warnings * about extern resolving to a common. */#include <errno.h>int errno = 0;

⌨️ 快捷键说明

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