base/math/w_drem.c

Go to the documentation of this file.
00001 /* 00002 * drem() wrapper for remainder(). 00003 * 00004 * Written by J.T. Conklin, <jtc@wimsey.com> 00005 * Placed into the Public Domain, 1994. 00006 */ 00007 00008 #include <math.h> 00009 00010 double 00011 drem(x, y) 00012 double x, y; 00013 { 00014 return remainder(x, y); 00015 }

Generated on Thu Nov 20 11:49:52 2008 for RTAI API by doxygen 1.3.8