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.3 simonb __RCSID("$NetBSD: w_drem.c,v 1.3 1999/07/02 15:37:44 simonb 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