URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libm/] [math/] [w_drem.c] - Rev 1773
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 "fdlibm.h" double drem(x, y) double x, y; { return remainder(x, y); }
Go to most recent revision | Compare with Previous | Blame | View Log