Home | History | Annotate | Line # | Download | only in src
w_drem.c revision 1.1
      1  1.1  jtc /*
      2  1.1  jtc  * drem() wrapper for remainder().
      3  1.1  jtc  *
      4  1.1  jtc  * Written by J.T. Conklin, <jtc (at) wimsey.com>
      5  1.1  jtc  * Placed into the Public Domain, 1994.
      6  1.1  jtc  */
      7  1.1  jtc 
      8  1.1  jtc #include <math.h>
      9  1.1  jtc 
     10  1.1  jtc double
     11  1.1  jtc drem(x, y)
     12  1.1  jtc 	double x, y;
     13  1.1  jtc {
     14  1.1  jtc 	return remainder(x, y);
     15  1.1  jtc }
     16