repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: cygtls: rename sig to current_sig
[newlib-cygwin.git]
/
newlib
/
libm
/
math
/
wf_drem.c
blob
7c3f7c58ecab291549c642b7c12683e82eeddc4b
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
10
float
11
#ifdef __STDC__
12
dremf
(
float
x
,
float
y
)
13
#else
14
dremf
(
x
,
y
)
15
float
x
,
y
;
16
#endif
17
{
18
return
remainderf
(
x
,
y
);
19
}