summaryrefslogtreecommitdiffstats
path: root/c/src/support/version.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/support/version.c')
-rw-r--r--c/src/support/version.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/c/src/support/version.c b/c/src/support/version.c
deleted file mode 100644
index 4caf0bd3f7..0000000000
--- a/c/src/support/version.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * 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.org/license/LICENSE.
- */
-
-#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 ")";