diff options
author | Craig Silverstein <csilvers@google.com> | 2008-11-06 00:44:32 +0000 |
---|---|---|
committer | Craig Silverstein <csilvers@google.com> | 2008-11-06 00:44:32 +0000 |
commit | e0bb29a5842200725829ebdb21dfa1f3c692b223 (patch) | |
tree | 584bb550cefb46a7ce98c316f225ceb217e20161 /gold/testsuite/tls_test_c.c | |
parent | 40fbfdfdeffdacdfcc192d880a61470903064931 (diff) | |
download | binutils-e0bb29a5842200725829ebdb21dfa1f3c692b223.zip binutils-e0bb29a5842200725829ebdb21dfa1f3c692b223.tar.gz binutils-e0bb29a5842200725829ebdb21dfa1f3c692b223.tar.bz2 |
* 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.
Diffstat (limited to 'gold/testsuite/tls_test_c.c')
-rw-r--r-- | gold/testsuite/tls_test_c.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gold/testsuite/tls_test_c.c b/gold/testsuite/tls_test_c.c index 1860969..730e46d 100644 --- a/gold/testsuite/tls_test_c.c +++ b/gold/testsuite/tls_test_c.c @@ -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); |