mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
2029a832e5
commit
d0c2b919ed
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Mar 21 01:21:43 2008 Yusuke Endoh <mame@tsg.ne.jp>
|
||||
|
||||
* missing/tgamma.c: include config.h before math.h. [ruby-dev:34075]
|
||||
|
||||
Thu Mar 20 21:46:33 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* io.c (argf_getline): use receiver.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue