Cleanup sync_file_range implementation
[glibc.git] / math / w_dremf.c
blobc5e7c63af5a4ee02fd34fd5caa2b4c2ad0fb49ab
1 /*
2 * dremf() wrapper for remainderf().
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
8 #include <math.h>
9 #include <math_private.h>
11 float
12 __dremf (float x, float y)
14 return __remainderf(x, y);
16 weak_alias (__dremf, dremf)