Skip to content

Commit 1d607a4

Browse files
committed
Add temporary workaround to resolve recursion issue
1 parent 8c896a5 commit 1d607a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

winsup/cygwin/math/isinf.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
int
22
isinf (double x)
33
{
4-
return __builtin_isinf_sign (x);
4+
// A temporary workaround to resolve recursion issue.
5+
return 0; // __builtin_isinf_sign (x);
56
}
67

78
int

0 commit comments

Comments
 (0)