This commit is contained in:
drochner 2004-06-25 15:57:38 +00:00
parent 3ed937d076
commit dddd0e25a3
2 changed files with 4 additions and 6 deletions

View File

@ -7,14 +7,13 @@
#include <sys/cdefs.h>
#if defined(LIBM_SCCS) && !defined(lint)
__RCSID("$NetBSD: w_drem.c,v 1.3 1999/07/02 15:37:44 simonb Exp $");
__RCSID("$NetBSD: w_drem.c,v 1.4 2004/06/25 15:57:38 drochner Exp $");
#endif
#include <math.h>
double
drem(x, y)
double x, y;
drem(double x, double y)
{
return remainder(x, y);
}

View File

@ -7,15 +7,14 @@
#include <sys/cdefs.h>
#if defined(LIBM_SCCS) && !defined(lint)
__RCSID("$NetBSD: w_dremf.c,v 1.3 1999/07/02 15:37:44 simonb Exp $");
__RCSID("$NetBSD: w_dremf.c,v 1.4 2004/06/25 15:57:38 drochner Exp $");
#endif
#include "math.h"
#include "math_private.h"
float
dremf(x, y)
float x, y;
dremf(float x, float y)
{
return remainderf(x, y);
}