diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-07-28 16:40:02 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-08-24 10:37:41 +0900 |
commit | c38c2d8ee26c70300e2e0a4eec867273a8520579 (patch) | |
tree | 0e368c3bbf3f1464bcd703e77649d4c6c9835325 /sprintf.c | |
parent | 4794a8a7cf4c9da00728e691b81dadb103383108 (diff) |
Moved exported symbols in internal/util.h to ruby/util.h
[Feature #18051]
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4763
Diffstat (limited to 'sprintf.c')
-rw-r--r-- | sprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,9 +28,9 @@ #include "internal/object.h" #include "internal/sanitizers.h" #include "internal/symbol.h" -#include "internal/util.h" #include "ruby/encoding.h" #include "ruby/re.h" +#include "ruby/util.h" #define BIT_DIGITS(N) (((N)*146)/485 + 1) /* log2(10) =~ 146/485 */ |