Subversion Repositories Kolibri OS

Rev

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

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. /*
  3.  * drem() wrapper for remainder().
  4.  *
  5.  * Written by J.T. Conklin, <jtc@wimsey.com>
  6.  * Placed into the Public Domain, 1994.
  7.  */
  8.  
  9. #include <math.h>
  10.  
  11. double
  12. drem(x, y)
  13.         double x, y;
  14. {
  15.         return remainder(x, y);
  16. }
  17.