summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2021-01-18 15:13:17 +0100
committerBruno Haible <bruno@clisp.org>2021-01-18 20:17:54 +0100
commit7ddc0c297211ac7a83a0a94feface10ba93c60f2 (patch)
treecab63fc46b80a385ac317ebaf2317d758f90d065 /tests
parent4d2d6a0fdd73edb3560fa0967fcbe5beaba4b62c (diff)
downloadgnulib-7ddc0c297211ac7a83a0a94feface10ba93c60f2.tar.gz
noreturn tests: Avoid test failure on Solaris 10/x86 with cc.
* tests/test-noreturn.c (main): Return 0.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-noreturn.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-noreturn.c b/tests/test-noreturn.c
index 3f3f994615..21cb6fc49e 100644
--- a/tests/test-noreturn.c
+++ b/tests/test-noreturn.c
@@ -65,4 +65,5 @@ void func3 (void)
int
main ()
{
+ return 0;
}