Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 1
/*
2
 * dremf() wrapper for remainderf().
3
 *
4
 * Written by J.T. Conklin, 
5
 * Placed into the Public Domain, 1994.
6
 */
7
 
8
#include "fdlibm.h"
9
 
10
float
11
#ifdef __STDC__
12
dremf(float x, float y)
13
#else
14
dremf(x, y)
15
	float x, y;
16
#endif
17
{
18
	return remainderf(x, y);
19
}