Home | History | Annotate | Line # | Download | only in src
w_drem.c revision 1.2
      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.2  lukem #include <sys/cdefs.h>
      9  1.2  lukem #if defined(LIBM_SCCS) && !defined(lint)
     10  1.2  lukem __RCSID("$NetBSD: w_drem.c,v 1.2 1997/10/09 11:34:32 lukem Exp $");
     11  1.2  lukem #endif
     12  1.2  lukem 
     13  1.1    jtc #include <math.h>
     14  1.1    jtc 
     15  1.1    jtc double
     16  1.1    jtc drem(x, y)
     17  1.1    jtc 	double x, y;
     18  1.1    jtc {
     19  1.1    jtc 	return remainder(x, y);
     20  1.1    jtc }
     21