URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [linux/] [uClibc/] [libm/] [w_drem.c] - Rev 1325
Go to most recent revision | Compare with Previous | Blame | View Log
/* * drem() wrapper for remainder(). * * Written by J.T. Conklin, <jtc@wimsey.com> * Placed into the Public Domain, 1994. */ #include <math.h> double drem(x, y) double x, y; { return remainder(x, y); }
Go to most recent revision | Compare with Previous | Blame | View Log