From 2c7774cc2f4bc87ffd736e921d89f0ef50cd0b80 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 6 Feb 2011 00:44:08 +0000 Subject: remquo{,f} from FreeBSD via Stathis Kamperis --- include/math.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/math.h b/include/math.h index fe0251c970f..83863417507 100644 --- a/include/math.h +++ b/include/math.h @@ -1,4 +1,4 @@ -/* $NetBSD: math.h,v 1.53 2010/09/15 16:11:30 christos Exp $ */ +/* $NetBSD: math.h,v 1.54 2011/02/06 00:44:08 christos Exp $ */ /* * ==================================================== @@ -349,6 +349,10 @@ long long int llroundf(float); float fmodf(float, float); float remainderf(float, float); +/* 7.12.10.3 The remquo functions */ +double remquo(double, double, int *); +float remquof(float, float, int *); + /* 7.12.11 manipulation */ float copysignf(float, float); -- cgit