source: rtems/cpukit/score/include/rtems/score/copyrt.h @ 7e119990

4.115
Last change on this file since 7e119990 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 964 bytes
Line 
1/**
2 *  @file  rtems/score/copyrt.h
3 *
4 *  @brief Copyright Notice for RTEMS
5 *
6 *  This include file contains the copyright notice for RTEMS
7 *  which is included in every binary copy of the executive.
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2008.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.org/license/LICENSE.
17 */
18
19#ifndef _RTEMS_SCORE_COPYRT_H
20#define _RTEMS_SCORE_COPYRT_H
21
22/**
23 *  @defgroup SuperCoreCopyright RTEMS Copyright Notice
24 *
25 *  @ingroup Score
26 */
27/**@{*/
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33/**
34 *  This is the copyright string for RTEMS.
35 */
36#ifdef SCORE_INIT
37const char _Copyright_Notice[] =
38"COPYRIGHT (c) 1989-2008.\n\
39On-Line Applications Research Corporation (OAR).\n";
40#else
41extern const char _Copyright_Notice[];
42#endif
43
44#ifdef __cplusplus
45}
46#endif
47
48/**@}*/
49#endif
50/* end of include file */
Note: See TracBrowser for help on using the repository browser.