From 7ce331c01ce6eb7b3f5c715a38a24359da9c6ee2 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 22 Nov 2001 14:04:29 +0000 Subject: Totally rework the math library, this time based on the MacOs X math library (which is itself based on the math lib from FreeBSD). -Erik --- libm/w_drem.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 libm/w_drem.c (limited to 'libm/w_drem.c') diff --git a/libm/w_drem.c b/libm/w_drem.c new file mode 100644 index 000000000..7f5049340 --- /dev/null +++ b/libm/w_drem.c @@ -0,0 +1,15 @@ +/* + * drem() wrapper for remainder(). + * + * Written by J.T. Conklin, + * Placed into the Public Domain, 1994. + */ + +#include + +double +drem(x, y) + double x, y; +{ + return remainder(x, y); +} -- cgit v1.2.3