summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartynas Venckus <martynas@cvs.openbsd.org>2008-07-24 09:41:59 +0000
committerMartynas Venckus <martynas@cvs.openbsd.org>2008-07-24 09:41:59 +0000
commit5a13226cae7f502defe75824315547c9c338eefa (patch)
treed4bc16ca949d18b9b3b0bc5ffebdf19d7f873ec9
parent2ec7cce2cd45879c42ccb64e6e1af0ac00821881 (diff)
unXXX prototypes: exp2, remquo, nan, exp2f, remquof, nanf
-rw-r--r--include/math.h14
1 files changed, 1 insertions, 13 deletions
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);