version.c

来自「RTEMS (Real-Time Executive for Multiproc」· C语言 代码 · 共 29 行

C
29
字号
/* *  COPYRIGHT (c) 2003, Ralf Corsepius, Ulm, Germany. *  COPYRIGHT (c) 2003, On-Line Applications Research Corporation (OAR). * *  The license and distribution terms for this file may be *  found in the file LICENSE in this distribution or at *  http://www.rtems.com/license/LICENSE. * *  $Id: version.c,v 1.1.2.2 2003/09/04 19:09:30 joel Exp $ */#include <rtems/system.h>#ifndef RTEMS_VERSION#error "Missing RTEMS_VERSION"#endif#ifndef CPU_NAME#error "Missing CPU_NAME"#endif#ifndef CPU_MODEL_NAME#error "Missing CPU_MODEL_NAME"#endif#ifndef RTEMS_BSP#error "Missing RTEMS_BSP"#endifconst char _RTEMS_version[] =  RTEMS_VERSION "(" CPU_NAME "/" CPU_MODEL_NAME "/" RTEMS_BSP ")";

⌨️ 快捷键说明

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