w_dremf.c 213 B

1234567891011121314
  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. #include "math.h"
  8. float
  9. dremf(float x, float y)
  10. {
  11. return remainderf(x, y);
  12. }