Subversion Repositories Kolibri OS

Rev

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

  1. /*
  2.  * dremf() wrapper for remainderf().
  3.  *
  4.  * Written by J.T. Conklin, <jtc@wimsey.com>
  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. }
  20.