mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
11 lines
184 B
C
11 lines
184 B
C
#include "libc/limits.h"
|
|
#include "libc/math/math.h"
|
|
|
|
float scalblnf(float x, long n)
|
|
{
|
|
if (n > INT_MAX)
|
|
n = INT_MAX;
|
|
else if (n < INT_MIN)
|
|
n = INT_MIN;
|
|
return scalbnf(x, n);
|
|
}
|