source: rtems/c/src/support/version.c @ 33a105fb

4.115
Last change on this file since 33a105fb was e96d248, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:58:07

2003-09-04 Joel Sherrill <joel@…>

  • lib/libcpu/shared/include/cache.h, lib/libcpu/shared/src/cache_aligned_malloc.c, lib/libcpu/shared/src/cache_manager.c, support/version.c: URL for license changed.
  • Property mode set to 100644
File size: 667 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.rtems.com/license/LICENSE.
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-" RTEMS_VERSION "(" CPU_NAME "/" CPU_MODEL_NAME "/" RTEMS_BSP ")";
Note: See TracBrowser for help on using the repository browser.