diff options
author | yui-knk <[email protected]> | 2024-04-21 14:46:27 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-04-21 15:50:45 +0900 |
commit | f87c216c948958aedaade6a5a4900ed83c13ceea (patch) | |
tree | 081d58bbe68b660cf2c0dec687f117d847eec7ad | |
parent | 381ce130aec150098e5e3418eb435ec7ce46820d (diff) |
Remove needless header file include
-rw-r--r-- | node.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -10,19 +10,10 @@ **********************************************************************/ #ifdef UNIVERSAL_PARSER - #include <stddef.h> #include "node.h" #include "rubyparser.h" #include "internal/parse.h" - -#else - -#include "internal.h" -#include "internal/hash.h" -#include "ruby/ruby.h" -#include "vm_core.h" - #endif #include "internal/variable.h" |