this repo has no description
1
2/*
3 * scalblnf.c
4 *
5 * by Ian Ollmann
6 *
7 * Copyright (c) 2007, Apple Inc. All Rights Reserved.
8 *
9 * C99 impelemtnation of scalblnf().
10 */
11
12#include <math.h>
13#include <stdint.h>
14
15float scalblnf( float x, long i )
16{
17 if( i > 300 )
18 i = 300;
19 if( i < -300 )
20 i = -300;
21
22 return scalbnf( x, (int) i );
23}