* testsuite/tls_test_c.c: Add prototype for t11 and t11_last.

* testsuite/tls_test_c.c (t11): Add explicit "void" to prototype.
	(t11_last): Likewise.
	* testsuite/ver_test_6.c (main): Likewise.
This commit is contained in:
Craig Silverstein
2008-11-06 00:44:32 +00:00
parent 40fbfdfdef
commit e0bb29a584
3 changed files with 15 additions and 3 deletions

View File

@@ -42,8 +42,11 @@ int v7;
#pragma omp threadprivate (v7)
#endif
int t11(void);
int t11_last(void);
int
t11()
t11(void)
{
#ifdef HAVE_OMP_SUPPORT
CHECK_EQ_OR_RETURN(v7, 0);
@@ -53,7 +56,7 @@ t11()
}
int
t11_last()
t11_last(void)
{
#ifdef HAVE_OMP_SUPPORT
CHECK_EQ_OR_RETURN(v7, 70);