summaryrefslogtreecommitdiffstats
path: root/testsuites/itrontests/itrontask04
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-30 11:09:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-30 11:09:13 +0000
commit1b4b7f397b38b31d6ba84cbabe552e7703954b22 (patch)
tree2c56bc1c11af78a30849b4b2487194e9255d7d11 /testsuites/itrontests/itrontask04
parentUse PRId32 to print INT's. (diff)
downloadrtems-1b4b7f397b38b31d6ba84cbabe552e7703954b22.tar.bz2
Add missing prototypes.
Diffstat (limited to '')
-rw-r--r--testsuites/itrontests/itrontask04/system.h10
-rw-r--r--testsuites/itrontests/itrontask04/task3.c2
2 files changed, 6 insertions, 6 deletions
diff --git a/testsuites/itrontests/itrontask04/system.h b/testsuites/itrontests/itrontask04/system.h
index 6629920912..319435ef34 100644
--- a/testsuites/itrontests/itrontask04/system.h
+++ b/testsuites/itrontests/itrontask04/system.h
@@ -18,11 +18,11 @@
/* functions */
-void ITRON_Init( void );
-void Preempt_task();
-void Task_1();
-void Task_2();
-void Task_3();
+extern void ITRON_Init( void );
+extern void Preempt_task(void);
+extern void Task_1(void);
+extern void Task_2(void);
+extern void Task_3(void);
/* configuration information */
diff --git a/testsuites/itrontests/itrontask04/task3.c b/testsuites/itrontests/itrontask04/task3.c
index 3864f6f01b..41a0576bba 100644
--- a/testsuites/itrontests/itrontask04/task3.c
+++ b/testsuites/itrontests/itrontask04/task3.c
@@ -20,7 +20,7 @@
#include "system.h"
-void Task_3()
+void Task_3(void)
{
rtems_status_code status;
int i;