Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
4973 right-hear 1
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2
/*
3
 * dremf() wrapper for remainderf().
4
 *
5
 * Written by J.T. Conklin, 
6
 * Placed into the Public Domain, 1994.
7
 */
8
 
9
#include "math.h"
10
#include "math_private.h"
11
 
12
float
13
dremf(x, y)
14
	float x, y;
15
{
16
	return remainderf(x, y);
17
}