diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-05 08:17:58 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-05 08:17:58 +0000 |
commit | cf3141a59dc73a8082a701c8f16842adab4ab09a (patch) | |
tree | 28baa08ec26885a2f67ceb400f16812d54f8570f /math | |
parent | d6f1fe47aa10f51e7c630904e3605d0d04b43b42 (diff) | |
download | glibc-cf3141a59dc73a8082a701c8f16842adab4ab09a.tar.gz glibc-cf3141a59dc73a8082a701c8f16842adab4ab09a.tar.xz glibc-cf3141a59dc73a8082a701c8f16842adab4ab09a.zip |
Update.
2000-12-05 Andreas Jaeger <aj@suse.de> * nss/test-netdb.c: Mark local functions as static to avoid warnings. (main): Use return to silence warning. * stdlib/test-canon.c (check_path): Mark as static to avoid warning. * stdio-common/test-popen.c: Mark local functions as static to avoid warnings. (main): Use return to silence warning. * stdlib/testsort.c (compare): Mark as static to avoid warning. * assert/test-assert.c: Mark local functions as static to avoid warnings. * assert/test-assert-perr.c: Likewise. * math/libm-test.inc (main): Use return to silence warnings.
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc index 5ec089ccc0..e923795b90 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -4401,10 +4401,11 @@ main (int argc, char **argv) if (noErrors) { printf (" %d errors occured.\n", noErrors); - exit (1); + return 1; } printf (" All tests passed successfully.\n"); - exit (0); + + return 0; } /* |