genericopenlibs/openenvcore/libm/src/w_drem.c
changeset 0 e4d67989cc36
child 18 47c74d1534e1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/genericopenlibs/openenvcore/libm/src/w_drem.c	Tue Feb 02 02:01:42 2010 +0200
@@ -0,0 +1,22 @@
+/*--------------------------------------------------------------------
+ *© Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
+ *--------------------------------------------------------------------
+*/
+/*
+ * drem() wrapper for remainder().
+ *
+ * Written by J.T. Conklin, <jtc@wimsey.com>
+ * Placed into the Public Domain, 1994.
+ */
+
+#include <math.h>
+
+#ifdef __SYMBIAN32__
+EXPORT_C double drem(double x, double y)
+#else
+double drem(x, y)
+double x, y;
+#endif //__SYMBIAN32__
+{
+	return remainder(x, y);
+}