From: martynas Date: Thu, 24 Jul 2008 09:41:58 +0000 (+0000) Subject: unXXX prototypes: exp2, remquo, nan, exp2f, remquof, nanf X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=49b719a2599cc09fba0e629e3835d60deab74233;p=openbsd unXXX prototypes: exp2, remquo, nan, exp2f, remquof, nanf --- diff --git a/include/math.h b/include/math.h index e1ccb67d222..ba64e75117c 100644 --- a/include/math.h +++ b/include/math.h @@ -1,4 +1,4 @@ -/* $OpenBSD: math.h,v 1.19 2008/07/24 09:35:30 martynas Exp $ */ +/* $OpenBSD: math.h,v 1.20 2008/07/24 09:41:58 martynas Exp $ */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. @@ -211,9 +211,7 @@ extern double acosh(double); extern double asinh(double); extern double atanh(double); -#if 0 /* XXX */ extern double exp2(double); -#endif /* XXX */ extern double expm1(double); extern int ilogb(double); extern double log1p(double); @@ -246,14 +244,10 @@ extern long long int llround(double); extern double trunc(double); extern double remainder(double, double); -#if 0 /* XXX */ extern double remquo(double, double, int *); -#endif /* XXX */ extern double copysign(double, double); -#if 0 /* XXX */ extern double nan(const char *); -#endif /* XXX */ extern double nextafter(double, double); #if 0 extern double nexttoward(double, long double); @@ -328,9 +322,7 @@ extern float sinhf(float); extern float tanhf(float); extern float expf(float); -#if 0 /* XXX */ extern float exp2f(float); -#endif /* XXX */ extern float expm1f(float); extern float frexpf(float, int *); extern int ilogbf(float); @@ -374,14 +366,10 @@ extern float truncf(float); extern float fmodf(float, float); extern float remainderf(float, float); -#if 0 /* XXX */ extern float remquof(float, float, int *); -#endif /* XXX */ extern float copysignf(float, float); -#if 0 /* XXX */ extern float nanf(const char *); -#endif /* XXX */ extern float nextafterf(float, float); #if 0 extern float nexttowardf(float, long double);