summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerpriorityprioritycompare.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerpriorityprioritycompare.c')
-rw-r--r--cpukit/score/src/schedulerpriorityprioritycompare.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/cpukit/score/src/schedulerpriorityprioritycompare.c b/cpukit/score/src/schedulerpriorityprioritycompare.c
deleted file mode 100644
index 6879d01ee4..0000000000
--- a/cpukit/score/src/schedulerpriorityprioritycompare.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * @file
- *
- * @brief Scheduler Priority Compare Two Priorities
- * @ingroup ScoreScheduler
- */
-
-/*
- * COPYRIGHT (c) 2011.
- * 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.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems/score/schedulerpriorityimpl.h>
-
-int _Scheduler_priority_Priority_compare(
- Priority_Control p1,
- Priority_Control p2
-)
-{
- return _Scheduler_priority_Priority_compare_body( p1, p2 );
-}