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

4.115
Last change on this file since d4dc7c8 was 20f02c6, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/28/09 at 05:58:54

Whitespace removal.

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