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 Tue Feb 2 17:46:05 2010 for RTAI API by  doxygen 1.4.7