mailing list of musl libc
 help / color / mirror / code / Atom feed
20a66deebff6ad26946dee1b312c7bec1f2616e2 blob 315 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
 
#include <limits.h>
#include <math.h>
#include <float.h>

#ifdef LONG_DOUBLE_IS_BINARY64
long double scalblnl(long double x, long n)
{
	return scalbln(x, n);
}
#else
long double scalblnl(long double x, long n)
{
	if (n > INT_MAX)
		n = INT_MAX;
	else if (n < INT_MIN)
		n = INT_MIN;
	return scalbnl(x, n);
}
#endif
debug log:

solving 20a66de ...
found 20a66de in https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
found 854c51c in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 854c51c4cb957087179cfa478f4be60f47a45802	src/math/scalblnl.c

applying [1/1] https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
diff --git a/src/math/scalblnl.c b/src/math/scalblnl.c
index 854c51c..20a66de 100644

Checking patch src/math/scalblnl.c...
Applied patch src/math/scalblnl.c cleanly.

index at:
100644 20a66deebff6ad26946dee1b312c7bec1f2616e2	src/math/scalblnl.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).