⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 assert.c

📁 VXWORKS源代码
💻 C
字号:
/* assert.c - ANSI standard assert function *//* Copyright 1992 Wind River Systems, Inc. *//*modification history--------------------01c,24oct92,smb  removed some redundant documentation.01b,20sep92,smb  documentation additions.01a,20jul92,smb  written.*//*DESCRIPTIONINCLUDE FILES: stdio.h, stdlib.h, assert.hSEE ALSO: American National Standard X3.159-1989NOMANUAL*/#include "vxWorks.h"#include "assert.h"#include "stdio.h"#include "stdlib.h"/******************************************************************************** __assert - function called by the assert macro. ** INCLUDE: stdio.h assert.h** RETURNS: never returns* NOMANUAL*/void __assert    (    const char *msg	/* message string */    )    {    fdprintf(2, "%s\n", CHAR_FROM_CONST (msg));	/* print msg to error stream */    abort(); 		    }

⌨️ 快捷键说明

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