summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psximfs01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psximfs01/init.c')
-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;