summaryrefslogtreecommitdiff
path: root/testsuites/psxtests/psximfs01
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-11 14:12:11 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-11 14:12:11 -0500
commit6c2de6052d450fa36338ed0c082647b9d535a928 (patch)
treecf352d1305edc992fceda6c7b75ab3658b982834 /testsuites/psxtests/psximfs01
parent4c86e3d8bee2680c9be999b4627b19438f1ae728 (diff)
psxtests - Eliminate missing prototype warnings
Diffstat (limited to 'testsuites/psxtests/psximfs01')
-rw-r--r--testsuites/psxtests/psximfs01/init.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/testsuites/psxtests/psximfs01/init.c b/testsuites/psxtests/psximfs01/init.c
index c24924c653..d507510c3d 100644
--- a/testsuites/psxtests/psximfs01/init.c
+++ b/testsuites/psxtests/psximfs01/init.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -21,6 +21,16 @@
#include <errno.h>
#include <rtems/libcsupport.h>
+/* forward declarations to avoid warnings */
+rtems_task Init(rtems_task_argument argument);
+void open_it(bool readOnly, bool create);
+void write_helper(void);
+void read_helper(void);
+void truncate_helper(void);
+void extend_helper(int eno);
+void close_it(void);
+void unlink_it(void);
+
int TestFd;
uint8_t Buffer[256];
ssize_t TotalWritten;