source: trunk/libs/newlib/src/newlib/libm/math/wf_drem.c @ 471

Last change on this file since 471 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 269 bytes
Line 
1/*
2 * dremf() wrapper for remainderf().
3 *
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
7
8#include "fdlibm.h"
9
10float
11#ifdef __STDC__
12dremf(float x, float y)
13#else
14dremf(x, y)
15        float x, y;
16#endif
17{
18        return remainderf(x, y);
19}
Note: See TracBrowser for help on using the repository browser.