summaryrefslogtreecommitdiffstats
path: root/rtems-test-template/psxtmtest_blocking/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'rtems-test-template/psxtmtest_blocking/init.c')
-rw-r--r--rtems-test-template/psxtmtest_blocking/init.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/rtems-test-template/psxtmtest_blocking/init.c b/rtems-test-template/psxtmtest_blocking/init.c
index 4e1934d..2bbd3d2 100644
--- a/rtems-test-template/psxtmtest_blocking/init.c
+++ b/rtems-test-template/psxtmtest_blocking/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$
*/
#ifdef HAVE_CONFIG_H
@@ -20,6 +18,11 @@
#include <pthread.h>
+/* forward declarations to avoid warnings */
+void *POSIX_Init(void *argument);
+void *Middle(void *argument);
+void *Low(void *argument);
+
void *Low(
void *argument
)