about summary refs log tree commit diff
path: root/math/test-fenv.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-12-04 08:37:38 +0000
committerUlrich Drepper <drepper@redhat.com>2000-12-04 08:37:38 +0000
commit767b6275d7bf9096e3f52348401632e1e58d4896 (patch)
tree90d5020efe471f708220a132870a47c7d562a9c4 /math/test-fenv.c
parent09881ccc3250a2fe1b55b99f8d432efc8cb7b523 (diff)
downloadglibc-767b6275d7bf9096e3f52348401632e1e58d4896.tar.gz
glibc-767b6275d7bf9096e3f52348401632e1e58d4896.tar.xz
glibc-767b6275d7bf9096e3f52348401632e1e58d4896.zip
Update.
2000-12-04  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/alpha/fpu/bits/mathdef.h: Remove FLT_EVAL_METHOD and
	DECIMAL_DIG definitions.
	* sysdeps/arm/fpu/bits/mathdef.h: Likewise
	* sysdeps/generic/bits/mathdef.h: Likewise
	* sysdeps/i386/fpu/bits/mathdef.h: Likewise
	* sysdeps/ia64/fpu/bits/mathdef.h: Likewise
	* sysdeps/m68k/fpu/bits/mathdef.h: Likewise
	* sysdeps/powerpc/fpu/bits/mathdef.h: Likewise
	* sysdeps/sparc/fpu/bits/mathdef.h: Likewise
	* sysdeps/sh/sh4/fpu/bits/mathdef.h: Likewise

	* math/test-fenv.c (main): Use return instead of exit to avoid warning.

	* math/atest-exp.c: Mark local functions as static to avoid warnings.
	* math/atest-exp2.c: Likewise.
	* math/atest-sincos.c: Likewise.
Diffstat (limited to 'math/test-fenv.c')
-rw-r--r--math/test-fenv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/test-fenv.c b/math/test-fenv.c
index c369fc0aaa..520a7a182f 100644
--- a/math/test-fenv.c
+++ b/math/test-fenv.c
@@ -657,5 +657,5 @@ main (void)
       exit (1);
     }
   printf ("\n All tests passed successfully.\n");
-  exit (0);
+  return 0;
 }