• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修訂d53bc3437f941cf01bf709ddd8e9c394db095b7a (tree)
時間2018-08-10 23:02:45
作者Christophe Lyon <christophe.lyon@st.c...>
CommiterWaldemar Brodkorb

Log Message

isnan: Add isnan weak alias to isnan

* libm/s_isnan.c: Add isnan weak alias.

Signed-off-by: Mickaël Guêné <mickael.guene@st.com>
Signed-off-by: Christophe Lyon <christophe.lyon@st.com>

Change Summary

差異

--- a/libm/s_isnan.c
+++ b/libm/s_isnan.c
@@ -26,4 +26,5 @@ int __isnan(double x)
2626 hx = 0x7ff00000 - hx;
2727 return (int)(((u_int32_t)hx)>>31);
2828 }
29+weak_alias(__isnan, isnan)
2930 libm_hidden_def(__isnan)