testsuites: Fix warnings

This commit is contained in:
Sebastian Huber
2013-04-11 13:58:33 +02:00
parent dc76d98a53
commit 7b369afba9
15 changed files with 51 additions and 40 deletions

View File

@@ -19,7 +19,7 @@
/* forward declarations to avoid warnings */
void *POSIX_Init(void *argument);
void benchmark_pthread_create(void);
void thread(void *argument);
void *thread(void *argument);
void benchmark_pthread_create(void)
{
@@ -46,11 +46,12 @@ void benchmark_pthread_create(void)
}
void thread(
void *thread(
void *argument
)
{
//Empty thread used in pthread_create().
return NULL;
}
void *POSIX_Init(