iostrerror.c
来自「vxworks源码源码解读是学习vxworks的最佳途径」· C语言 代码 · 共 27 行
C
27 行
/* This has been copied from the gnu source tree *//* Make all changes there, not here! */#ifdef __cplusplusextern "C" {#endif#ifndef _N_char __iostrerror_o = 0;#elsechar _N_ = 0;#endif#ifdef __cplusplus}#endif#include "vxWorks.h"/* This should be replaced by whatever namespace-clean version of strerror you have available. */#include "libioP.h"extern char *strerror __P ((int));char *_IO_strerror (errnum) int errnum;{ return strerror(errnum);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?