From 30f41c02aec763d32e62351452da9ef582bc3472 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:30:59 -0800 Subject: Move contrib libraries to contrib repo --- contrib/SDL-3.2.8/src/libm/s_isinf.c | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 contrib/SDL-3.2.8/src/libm/s_isinf.c (limited to 'contrib/SDL-3.2.8/src/libm/s_isinf.c') diff --git a/contrib/SDL-3.2.8/src/libm/s_isinf.c b/contrib/SDL-3.2.8/src/libm/s_isinf.c deleted file mode 100644 index 9486b05..0000000 --- a/contrib/SDL-3.2.8/src/libm/s_isinf.c +++ /dev/null @@ -1,24 +0,0 @@ -#include "SDL_internal.h" -/* - * Written by J.T. Conklin . - * Changed to return -1 for -Inf by Ulrich Drepper . - * Public domain. - */ - -/* - * isinf(x) returns 1 is x is inf, -1 if x is -inf, else 0; - * no branching! - */ - -#include "math.h" -#include "math_private.h" - -int __isinf(double x) -{ - int32_t hx,lx; - EXTRACT_WORDS(hx,lx,x); - lx |= (hx & 0x7fffffff) ^ 0x7ff00000; - lx |= -lx; - return ~(lx >> 31) & (hx >> 30); -} -libm_hidden_def(__isinf) -- cgit v1.2.3