version.c

来自「MPC850的bootrom。使用后可以直接启动boot程序」· C语言 代码 · 共 23 行

C
23
字号
/* version.c - creation version/date/time module */#include "vxWorks.h"#include "version.h"/*modification history--------------------01a,06mar96,dat	written*//*This module is always built with each executable image.  It providesthe VxWorks version id, and the time and date it was built.The ANSI predefined macros __DATE__ and __TIME__ are used to providethe date/time information.  ANSI compliant compilers are required forbuilding all VxWorks executables.*/char * vxWorksVersion = VXWORKS_VERSION;char * creationDate   = __DATE__ ", " __TIME__;

⌨️ 快捷键说明

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