aboutsummaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2020-05-04 15:35:26 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2020-05-11 09:24:08 +0900
commitd7f4d732c199df24620a162372c71ee83ed21e62 (patch)
treee55586f3378b764611e0cc6e898ca0829a21d49c /missing
parentdca234a5dc9d5bb39c906d833c43305ce95508fb (diff)
downloadruby-d7f4d732c199df24620a162372c71ee83ed21e62.tar.gz
sed -i s|ruby/3|ruby/impl|g
This shall fix compile errors.
Diffstat (limited to 'missing')
-rw-r--r--missing/alloca.c2
-rw-r--r--missing/dup2.c2
-rw-r--r--missing/flock.c2
-rw-r--r--missing/isinf.c2
-rw-r--r--missing/tgamma.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/missing/alloca.c b/missing/alloca.c
index efe34be3bd..bf1508d026 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 "ruby/3/config.h"
+#include "ruby/impl/config.h"
#define X3J11 1 /* config.h should contain void if needed */
#ifdef C_ALLOCA
diff --git a/missing/dup2.c b/missing/dup2.c
index 6d1dea304a..a415cfd1ba 100644
--- a/missing/dup2.c
+++ b/missing/dup2.c
@@ -11,7 +11,7 @@
* Return fd2 if all went well; return BADEXIT otherwise.
*/
-#include "ruby/3/config.h"
+#include "ruby/impl/config.h"
#if defined(HAVE_FCNTL)
# include <fcntl.h>
diff --git a/missing/flock.c b/missing/flock.c
index b846841738..b9ff4b9473 100644
--- a/missing/flock.c
+++ b/missing/flock.c
@@ -1,4 +1,4 @@
-#include "ruby/3/config.h"
+#include "ruby/impl/config.h"
#include "ruby/ruby.h"
#if defined _WIN32
diff --git a/missing/isinf.c b/missing/isinf.c
index 39ca9cabb3..065844348c 100644
--- a/missing/isinf.c
+++ b/missing/isinf.c
@@ -18,7 +18,7 @@ isinf(double n)
#else
-#include "ruby/3/config.h"
+#include "ruby/impl/config.h"
#if defined(HAVE_FINITE) && defined(HAVE_ISNAN)
diff --git a/missing/tgamma.c b/missing/tgamma.c
index bfcc140443..781de9f75f 100644
--- a/missing/tgamma.c
+++ b/missing/tgamma.c
@@ -9,7 +9,7 @@ reference - Haruhiko Okumura: C-gengo niyoru saishin algorithm jiten
/***********************************************************
gamma.c -- Gamma function
***********************************************************/
-#include "ruby/3/config.h"
+#include "ruby/impl/config.h"
#include "ruby/missing.h"
#include <math.h>
#include <errno.h>