ANSIfy
This commit is contained in:
parent
3ed937d076
commit
dddd0e25a3
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue