diff options
author | 卜部昌平 <[email protected]> | 2020-05-08 18:31:09 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2020-05-11 09:24:08 +0900 |
commit | 9e41a75255d15765648279629fd3134cae076398 (patch) | |
tree | 9e63a61b600929b5e3d8014de41624e913718eaa /internal/fixnum.h | |
parent | b85fd1d690b65efaa126cf9c24da73f31eee7a4e (diff) |
sed -i 's|ruby/impl|ruby/internal|'
To fix build failures.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3079
Diffstat (limited to 'internal/fixnum.h')
-rw-r--r-- | internal/fixnum.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/fixnum.h b/internal/fixnum.h index c4c73c9481..e1bde16532 100644 --- a/internal/fixnum.h +++ b/internal/fixnum.h @@ -9,10 +9,10 @@ * file COPYING are met. Consult the file for details. * @brief Internal header for Fixnums. */ -#include "ruby/impl/config.h" /* for HAVE_LONG_LONG */ +#include "ruby/internal/config.h" /* for HAVE_LONG_LONG */ #include <limits.h> /* for CHAR_BIT */ #include "internal/compilers.h" /* for __has_builtin */ -#include "ruby/impl/stdbool.h" /* for bool */ +#include "ruby/internal/stdbool.h" /* for bool */ #include "ruby/intern.h" /* for rb_big_mul */ #include "ruby/ruby.h" /* for RB_FIXABLE */ |