summaryrefslogtreecommitdiff
path: root/rtems-test-template/tmtest/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-11 09:30:38 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-11 09:30:38 -0500
commitf0bc7c2afdf1774b89a1f1f323023829c50c9372 (patch)
tree83af52bb302a2cc593b9a8feced18c624ccbb732 /rtems-test-template/tmtest/init.c
parent07bc90a71759dd653adf4df5b5c3f6bdabceb04a (diff)
Eliminate missing prototype warnings in templates
Diffstat (limited to '')
-rw-r--r--rtems-test-template/tmtest/init.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/rtems-test-template/tmtest/init.c b/rtems-test-template/tmtest/init.c
index 7d364eb..5336cd7 100644
--- a/rtems-test-template/tmtest/init.c
+++ b/rtems-test-template/tmtest/init.c
@@ -1,12 +1,10 @@
/*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2012.
* 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.com/license/LICENSE.
- *
- * $Id$
*/
#include <coverhd.h>
@@ -14,6 +12,9 @@
#include <timesys.h>
#include "test_support.h"
+/* forward declarations to avoid warnings */
+rtems_task Init(rtems_task_argument argument);
+
rtems_task Init(
rtems_task_argument argument
)