summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/pthread07.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxhdrs/pthread07.c')
-rw-r--r--testsuites/psxtests/psxhdrs/pthread07.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxhdrs/pthread07.c b/testsuites/psxtests/psxhdrs/pthread07.c
index d1e1f06ef5..bf5e964e6a 100644
--- a/testsuites/psxtests/psxhdrs/pthread07.c
+++ b/testsuites/psxtests/psxhdrs/pthread07.c
@@ -22,7 +22,7 @@
#error "rtems is supposed to have pthread_create"
#endif
-void test( void );
+int test( void );
void *test_task( void * arg );
void *test_task(
@@ -34,7 +34,7 @@ void *test_task(
return NULL;
}
-void test( void )
+int test( void )
{
pthread_t thread;
pthread_attr_t attribute;
@@ -42,4 +42,6 @@ void test( void )
int result;
result = pthread_create( &thread, &attribute, test_task, arg );
+
+ return result;
}