diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-01 06:52:37 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-01 06:52:37 +0000 |
commit | 00e35b4f19e4ec1f7d1d3f8bd49573054669f32e (patch) | |
tree | 1fb66f54bb92e7747bc087c547187aeb2d81db93 /missing/erf.c | |
parent | 3b53e365dc41fa15854c2f2275ea7ebc05562152 (diff) | |
download | bundler-00e35b4f19e4ec1f7d1d3f8bd49573054669f32e.tar.gz |
* missing/erf.c: need to include some headers for some platforms.
* win32/win32.c (copysign, scalb): define for compatibility with
other platforms. [ruby-dev:26430]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing/erf.c')
-rw-r--r-- | missing/erf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/missing/erf.c b/missing/erf.c index 94a40c552a..c0ab65f881 100644 --- a/missing/erf.c +++ b/missing/erf.c @@ -31,6 +31,10 @@ static char sccsid[] = "@(#)erf.c 8.1 (Berkeley) 6/4/93"; #endif /* not lint */ +#include <stdio.h> +#include "config.h" +#include "defines.h" + #if defined(vax)||defined(tahoe) /* Deal with different ways to concatenate in cpp */ |