Home | History | Annotate | Line # | Download | only in src
      1  1.1       jtc /*
      2  1.1       jtc  * drem() wrapper for remainder().
      3  1.3    simonb  *
      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.4  drochner __RCSID("$NetBSD: w_drem.c,v 1.4 2004/06/25 15:57:38 drochner 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.4  drochner drem(double x, double y)
     17  1.1       jtc {
     18  1.1       jtc 	return remainder(x, y);
     19  1.1       jtc }
     20