w_drem.c 211 B

123456789101112131415
  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(x, y)
  10. double x, y;
  11. {
  12. return remainder(x, y);
  13. }