diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-20 16:22:03 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-20 16:22:03 +0000 |
commit | d0c2b919ed4b89af01e8a960ef40ef633ad060f3 (patch) | |
tree | d1d62f7fd706e3626e85dd6d9a57e7d3ee58fa26 | |
parent | 2029a832e5305b885bc75c2f3ae7b070074bf45d (diff) |
* missing/tgamma.c: include config.h before math.h. [ruby-dev:34075]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15814 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | missing/tgamma.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Mar 21 01:21:43 2008 Yusuke Endoh <[email protected]> + + * missing/tgamma.c: include config.h before math.h. [ruby-dev:34075] + Thu Mar 20 21:46:33 2008 Nobuyoshi Nakada <[email protected]> * io.c (argf_getline): use receiver. diff --git a/missing/tgamma.c b/missing/tgamma.c index 91f83fcb82..5aa5b31c9b 100644 --- a/missing/tgamma.c +++ b/missing/tgamma.c @@ -9,9 +9,9 @@ reference - Haruhiko Okumura: C-gengo niyoru saishin algorithm jiten /*********************************************************** gamma.c -- Gamma function ***********************************************************/ +#include "ruby/config.h" #include <math.h> #include <errno.h> -#include "ruby/config.h" #ifdef HAVE_LGAMMA_R |