scalbln.c\math\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/math/scalbln.c
blob: e6f3f195c856afcf0eafbb0071654800d7b8921c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <limits.h>
#include <math.h>
double scalbln(double x, long n)
{
	if (n > INT_MAX)
		n = INT_MAX;
	else if (n < INT_MIN)
		n = INT_MIN;
	return scalbn(x, n);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月07日 14:40:02 +0000

AltStyle によって変換されたページ (->オリジナル) /