diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-22 20:00:25 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-22 20:00:25 +0000 |
commit | d48e59d98078e31ba01f7f284cc16a5451c6ab6e (patch) | |
tree | 0c29cefd96577c80793871da7f8e07bf2cd68f24 /libm/k_standard.c | |
parent | 766ef9a2cc72c5888a3abe83e63442825bf88920 (diff) |
Guard matherr/__kernel_standard w/ _IEEE_LIBM, we do not use them, save 7,6k
Diffstat (limited to 'libm/k_standard.c')
-rw-r--r-- | libm/k_standard.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libm/k_standard.c b/libm/k_standard.c index 30d83e3ca..4df189853 100644 --- a/libm/k_standard.c +++ b/libm/k_standard.c @@ -18,6 +18,8 @@ static char rcsid[] = "$NetBSD: k_standard.c,v 1.6 1995/05/10 20:46:35 jtc Exp $ #include "math_private.h" #include <errno.h> +#ifndef _IEEE_LIBM + libm_hidden_proto(copysign) libm_hidden_proto(matherr) libm_hidden_proto(rint) @@ -784,3 +786,4 @@ static double zero = 0.0; /* used as const */ } return exc.retval; } +#endif /* _IEEE_LIBM */ |