smp07: Resolve missing prototype warning.

This commit is contained in:
Jennifer Averett
2014-11-24 14:48:58 -06:00
parent 2c474a056f
commit 6291e9627e

View File

@@ -20,6 +20,14 @@ volatile bool TaskRan = false;
volatile bool TSRFired = false;
rtems_id Semaphore;
rtems_task Init(
rtems_task_argument argument
);
rtems_task Test_task(
rtems_task_argument argument
);
static void success(void)
{
rtems_test_end_with_plugin(locked_printf_plugin, NULL);
@@ -65,7 +73,7 @@ rtems_task Test_task(
}
rtems_timer_service_routine TimerMethod(
static rtems_timer_service_routine TimerMethod(
rtems_id timer,
void *arg
)