Module Name: src
Committed By: christos
Date: Sun Oct 4 22:59:25 UTC 2009
Modified Files:
src/include: math.h
Log Message:
oops forgot to commit that one--- Add f{dim,min,max}{,l,f}
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/include/math.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/math.h
diff -u src/include/math.h:1.48 src/include/math.h:1.49
--- src/include/math.h:1.48 Sat Feb 21 20:34:01 2009
+++ src/include/math.h Sun Oct 4 18:59:25 2009
@@ -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 && ... */