source: rtems/cpukit/include/rtems/score/copyrt.h @ 9039011

Last change on this file since 9039011 was 9039011, checked in by Sebastian Huber <sebastian.huber@…>, on 05/11/20 at 06:20:48

rtems: Move declartion of _RTEMS_version

Close #3978.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSSuperCoreCopyright
5 *
6 * @brief Copyright Notice for RTEMS
7 *
8 * This include file contains the copyright notice for RTEMS
9 * which is included in every binary copy of the executive.
10 */
11
12/*
13 *  COPYRIGHT (c) 1989-2008.
14 *  On-Line Applications Research Corporation (OAR).
15 *
16 *  The license and distribution terms for this file may be
17 *  found in the file LICENSE in this distribution or at
18 *  http://www.rtems.org/license/LICENSE.
19 */
20
21#ifndef _RTEMS_SCORE_COPYRT_H
22#define _RTEMS_SCORE_COPYRT_H
23
24/**
25 * @defgroup RTEMSSuperCoreCopyright RTEMS Copyright Notice
26 *
27 * @ingroup RTEMSScore
28 *
29 * @brief Copyright Notice for RTEMS
30 *
31 * @{
32 */
33
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39/**
40 *  This is the copyright string for RTEMS.
41 */
42extern const char _Copyright_Notice[];
43
44/**
45 * @brief This constant provides the RTEMS version string.
46 *
47 * The constant name does not follow the naming conventions.  Do not change it
48 * for backward compatibility reasons.
49 *
50 * @see rtems_get_version_string()
51 */
52extern const char _RTEMS_version[];
53
54#ifdef __cplusplus
55}
56#endif
57
58/** @} */
59
60#endif
61/* end of include file */
Note: See TracBrowser for help on using the repository browser.