w_drem.c 212 B

1234567891011121314
  1. /*
  2. * drem() wrapper for remainder().
  3. *
  4. * Written by J.T. Conklin, <jtc@wimsey.com>
  5. * Placed into the Public Domain, 1994.
  6. */
  7. #include <math.h>
  8. double
  9. drem(double x, double y)
  10. {
  11. return remainder(x, y);
  12. }