Tabs to spaces, more consistent formatting, childs -> children, typos in
[AROS.git] / compiler / mlib / w_drem.c
blob0f6840934fef985673c24977072b7b67ed5da838
1 /*
2 * drem() wrapper for remainder().
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
8 #include <math.h>
10 double
11 drem(x, y)
12 double x, y;
14 return remainder(x, y);