source: rtems/c/src/support/version.c @ 434b8ea1

4.104.114.84.95
Last change on this file since 434b8ea1 was 434b8ea1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/24/03 at 09:53:09

Merger from rtems-4-6-branch.

  • Property mode set to 100644
File size: 663 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2003, Ralf Corsepius, Ulm, Germany.
3 *  COPYRIGHT (c) 2003, On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.OARcorp.com/rtems/license.html.
8 *
9 *  $Id$
10 */
11
12#include <rtems/system.h>
13
14#ifndef RTEMS_VERSION
15#error "Missing RTEMS_VERSION"
16#endif
17#ifndef CPU_NAME
18#error "Missing CPU_NAME"
19#endif
20#ifndef CPU_MODEL_NAME
21#error "Missing CPU_MODEL_NAME"
22#endif
23#ifndef RTEMS_BSP
24#error "Missing RTEMS_BSP"
25#endif
26
27const char _RTEMS_version[] =
28  RTEMS_VERSION "(" CPU_NAME "/" CPU_MODEL_NAME "/" RTEMS_BSP ")";
Note: See TracBrowser for help on using the repository browser.