Files
rtems/c/src/support/version.c
Joel Sherrill e96d248a16 2003-09-04 Joel Sherrill <joel@OARcorp.com>
* 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.
2003-09-04 18:58:07 +00:00

29 lines
667 B
C

/*
* 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$
*/
#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"
#endif
const char _RTEMS_version[] =
"rtems-" RTEMS_VERSION "(" CPU_NAME "/" CPU_MODEL_NAME "/" RTEMS_BSP ")";