source: trunk/libs/newlib/src/newlib/libm/math/w_drem.c @ 543

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

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

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