commit | 1dc9e472e19acfe6dc7f41e429236e7eef7ceda1 | [log] [tgz] |
---|---|---|
author | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:28:35 2009 -0800 |
committer | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:28:35 2009 -0800 |
tree | 3be0c520fae17689bbf5584e1136fb820caef26f | |
parent | 1767f908af327fa388b1c66883760ad851267013 [diff] [blame] |
auto import from //depot/cupcake/@135843
diff --git a/libm/src/w_drem.c b/libm/src/w_drem.c new file mode 100644 index 0000000..0f68409 --- /dev/null +++ b/libm/src/w_drem.c
@@ -0,0 +1,15 @@ +/* + * drem() wrapper for remainder(). + * + * Written by J.T. Conklin, <jtc@wimsey.com> + * Placed into the Public Domain, 1994. + */ + +#include <math.h> + +double +drem(x, y) + double x, y; +{ + return remainder(x, y); +}