w_drem.c 256 B

12345678910111213141516
  1. /*
  2. * drem() wrapper for remainder().
  3. *
  4. * Written by J.T. Conklin, <[email protected]>
  5. * Placed into the Public Domain, 1994.
  6. */
  7. #include <openlibm_math.h>
  8. #include "math_private.h"
  9. DLLEXPORT double
  10. drem(x, y)
  11. double x, y;
  12. {
  13. return remainder(x, y);
  14. }