summaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-10 09:30:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-10 09:30:55 +0000
commit95af453ec32eb22079549b0ccd833bc85eaa8c8e (patch)
treeea34971108d5ed4961989f74702941c69d6a7800 /missing
parent4bc4f9543a285a1cf3ab563a9e40dc33c522aa8f (diff)
downloadruby-95af453ec32eb22079549b0ccd833bc85eaa8c8e.tar.gz
ruby-95af453ec32eb22079549b0ccd833bc85eaa8c8e.tar.xz
ruby-95af453ec32eb22079549b0ccd833bc85eaa8c8e.zip
* missing/isinf.c, missing/dup2.c, missing/strtod.c, missing/x68.c,
missing/alloca.c: use "ruby/config.h". git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12514 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing')
-rw-r--r--missing/alloca.c2
-rw-r--r--missing/dup2.c2
-rw-r--r--missing/isinf.c2
-rw-r--r--missing/strtod.c2
-rw-r--r--missing/x68.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/missing/alloca.c b/missing/alloca.c
index 39697f114..067f76b18 100644
--- a/missing/alloca.c
+++ b/missing/alloca.c
@@ -29,7 +29,7 @@
static char SCCSid[] = "@(#)alloca.c 1.1"; /* for the "what" utility */
#endif
-#include "config.h"
+#include "ruby/config.h"
#ifdef emacs
#ifdef static
/* actually, only want this if static is defined as ""
diff --git a/missing/dup2.c b/missing/dup2.c
index 00d814597..7554084c5 100644
--- a/missing/dup2.c
+++ b/missing/dup2.c
@@ -11,7 +11,7 @@
* Return fd2 if all went well; return BADEXIT otherwise.
*/
-#include "config.h"
+#include "ruby/config.h"
#if defined(HAVE_FCNTL)
# include <fcntl.h>
diff --git a/missing/isinf.c b/missing/isinf.c
index 27271bdec..eecb3eb49 100644
--- a/missing/isinf.c
+++ b/missing/isinf.c
@@ -18,7 +18,7 @@ isinf(double n)
#else
-#include "config.h"
+#include "ruby/config.h"
#if defined(HAVE_FINITE) && defined(HAVE_ISNAN)
diff --git a/missing/strtod.c b/missing/strtod.c
index fdccd4808..ce1c0f6d4 100644
--- a/missing/strtod.c
+++ b/missing/strtod.c
@@ -17,7 +17,7 @@
* RCS: @(#) $Id$
*/
-#include "config.h"
+#include "ruby/config.h"
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
diff --git a/missing/x68.c b/missing/x68.c
index 8d00d5004..ece840d9c 100644
--- a/missing/x68.c
+++ b/missing/x68.c
@@ -1,6 +1,6 @@
/* x68 compatibility functions -- follows Ruby's license */
-#include "config.h"
+#include "ruby/config.h"
#if !HAVE_SELECT
#include "x68/select.c"