summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmsem04/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-11 09:15:40 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-11 09:15:40 -0500
commit991a3cc1c9e7a141f08995e1f3cb6f23f2da2a3b (patch)
tree285ffee7745d1c87165ce8f87f81c816a4660d0e /testsuites/psxtmtests/psxtmsem04/init.c
parentRemove CVS Id Strings (manual edits after script) (diff)
downloadrtems-991a3cc1c9e7a141f08995e1f3cb6f23f2da2a3b.tar.bz2
psxtmtests - Eliminate missing prototype warnings
Diffstat (limited to 'testsuites/psxtmtests/psxtmsem04/init.c')
-rw-r--r--testsuites/psxtmtests/psxtmsem04/init.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuites/psxtmtests/psxtmsem04/init.c b/testsuites/psxtmtests/psxtmsem04/init.c
index c41adb13f0..649ca45651 100644
--- a/testsuites/psxtmtests/psxtmsem04/init.c
+++ b/testsuites/psxtmtests/psxtmsem04/init.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2011.
+ * COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -22,6 +22,10 @@
#include <sched.h>
#include <rtems/timerdrv.h>
+/* forward declarations to avoid warnings */
+void *POSIX_Init(void *argument);
+void *Blocker(void *argument);
+
#define MAX_SEMS 2
sem_t sem1;