summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp70/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp70/init.c')
-rw-r--r--testsuites/sptests/sp70/init.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/testsuites/sptests/sp70/init.c b/testsuites/sptests/sp70/init.c
index 67980ea1fa..2d774b18a9 100644
--- a/testsuites/sptests/sp70/init.c
+++ b/testsuites/sptests/sp70/init.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -14,6 +14,11 @@
#include <tmacros.h>
#include "test_support.h"
+/* forward declarations to avoid warnings */
+rtems_task Init(rtems_task_argument argument);
+void create_helper(int task);
+void delete_helper(int task);
+
rtems_id TaskID[10];
void create_helper(int task)
@@ -32,7 +37,7 @@ void create_helper(int task)
directive_failed( status, "rtems_task_create" );
}
-void delete_helper( int task )
+void delete_helper(int task)
{
rtems_status_code status;