mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-14 09:49:14 +08:00
8 lines
110 B
C
8 lines
110 B
C
|
#include <math.h>
|
||
|
#include "headers/ldexpf.h"
|
||
|
|
||
|
float ldexpf(float x, int exp)
|
||
|
{
|
||
|
return _ldexpf(x, exp);
|
||
|
}
|