summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmsem03/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtmtests/psxtmsem03/init.c')
-rw-r--r--testsuites/psxtmtests/psxtmsem03/init.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/testsuites/psxtmtests/psxtmsem03/init.c b/testsuites/psxtmtests/psxtmsem03/init.c
index 07e45d9d69..58864bb847 100644
--- a/testsuites/psxtmtests/psxtmsem03/init.c
+++ b/testsuites/psxtmtests/psxtmsem03/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
@@ -23,6 +21,11 @@
#include <pthread.h>
#include <sched.h>
+/* forward declarations to avoid warnings */
+void *POSIX_Init(void *argument);
+void *Middle(void *argument);
+void *Low(void *argument);
+
#define MAX_SEMS 2
sem_t sem1;