From 358bd740593132ddb00d6e33b4f512b5f9615597 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 3 Feb 2016 12:41:02 +0100 Subject: score: Avoid SCORE_EXTERN Delete SCORE_INIT. This finally removes the some.h: #ifndef SOME_XYZ_EXTERN #define SOME_XYZ_EXTERN extern #endif SOME_XYZ_EXTERN type xyz; some_xyz.c: #define SOME_XYZ_EXTERN #include pattern in favour of some.h: extern type xyz; some_xyz.c #include type xyz; Update #2559. --- cpukit/score/include/rtems/score/copyrt.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'cpukit/score/include/rtems/score/copyrt.h') diff --git a/cpukit/score/include/rtems/score/copyrt.h b/cpukit/score/include/rtems/score/copyrt.h index c3757bfae4..17c925a008 100644 --- a/cpukit/score/include/rtems/score/copyrt.h +++ b/cpukit/score/include/rtems/score/copyrt.h @@ -33,13 +33,7 @@ extern "C" { /** * This is the copyright string for RTEMS. */ -#ifdef SCORE_INIT -const char _Copyright_Notice[] = -"COPYRIGHT (c) 1989-2008.\n\ -On-Line Applications Research Corporation (OAR).\n"; -#else extern const char _Copyright_Notice[]; -#endif #ifdef __cplusplus } -- cgit v1.2.3