mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 11:00:04 +08:00
8 lines
112 B
C
8 lines
112 B
C
|
#include <math.h>
|
||
|
#include "headers/frexp.h"
|
||
|
|
||
|
double frexp(double x, int *pexp)
|
||
|
{
|
||
|
return _frexp(x, pexp);
|
||
|
}
|