Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/include oops forgot to commit that one--- Add f{dim, min, max}...



details:   https://anonhg.NetBSD.org/src/rev/dc13dc9c0e22
branches:  trunk
changeset: 747897:dc13dc9c0e22
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Oct 04 22:59:25 2009 +0000

description:
oops forgot to commit that one--- Add f{dim,min,max}{,l,f}

diffstat:

 include/math.h |  11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diffs (25 lines):

diff -r 087e47dc14fe -r dc13dc9c0e22 include/math.h
--- a/include/math.h    Sun Oct 04 22:57:46 2009 +0000
+++ b/include/math.h    Sun Oct 04 22:59:25 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: math.h,v 1.48 2009/02/22 01:34:01 martin Exp $ */
+/*     $NetBSD: math.h,v 1.49 2009/10/04 22:59:25 christos Exp $       */
 
 /*
  * ====================================================
@@ -352,6 +352,15 @@
 #define islessequal(x, y)      (!isunordered((x), (y)) && (x) <= (y))
 #define islessgreater(x, y)    (!isunordered((x), (y)) && \
                                 ((x) > (y) || (y) > (x)))
+double fdim(double, double);
+double fmax(double, double);
+double fmin(double, double);
+float  fdimf(float, float);
+float  fmaxf(float, float);
+float  fminf(float, float);
+long double fdiml(long double, long double);
+long double fmaxl(long double, long double);
+long double fminl(long double, long double);
 
 #endif /* !_ANSI_SOURCE && ... */
 



Home | Main Index | Thread Index | Old Index