Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2007-09-04 21:33:10 +0400
committerJeff Johnston <jjohnstn@redhat.com>2007-09-04 21:33:10 +0400
commit86a934d2251806fe5eed0d36c798c67c005f3fce (patch)
tree14be350187118674cbe72edb4f92d91980845331
parent3509dfbbcac951ca2bd3128797690b6d2de3b3eb (diff)
2007-09-04 Kazunori Asayama <asayama@sm.sony.co.jp>
* libm/math/wf_tgamma.c: Add missing include.
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libm/math/wf_tgamma.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index cac330ce0..b9551a1b4 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-04 Kazunori Asayama <asayama@sm.sony.co.jp>
+
+ * libm/math/wf_tgamma.c: Add missing include.
+
2007-08-31 Antony King <antony.king@st.com>
* libc/stdlib/mprec.h [_DOUBLE_IS_32BITS}: Define IEEE_Arith
diff --git a/newlib/libm/math/wf_tgamma.c b/newlib/libm/math/wf_tgamma.c
index 642d7c05b..2b57d845f 100644
--- a/newlib/libm/math/wf_tgamma.c
+++ b/newlib/libm/math/wf_tgamma.c
@@ -14,6 +14,7 @@
*/
#include "math.h"
+#include "fdlibm.h"
#ifdef __STDC__
float tgammaf(float x)