summaryrefslogtreecommitdiff
path: root/internal/eval.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal/eval.h')
-rw-r--r--internal/eval.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/internal/eval.h b/internal/eval.h
index 5fc3b38e90..86729a8ff0 100644
--- a/internal/eval.h
+++ b/internal/eval.h
@@ -11,13 +11,16 @@
* @note There also is eval_intern.h, which is evaluator's internal
* header (related to this file, but not the same role).
*/
+#include "ruby/ruby.h" /* for ID */
+
+#define id_signo ruby_static_id_signo
+#define id_status ruby_static_id_status
/* eval.c */
+extern ID ruby_static_id_signo;
+extern ID ruby_static_id_status;
VALUE rb_refinement_module_get_refined_class(VALUE module);
-extern ID ruby_static_id_signo, ruby_static_id_status;
void rb_class_modify_check(VALUE);
-#define id_signo ruby_static_id_signo
-#define id_status ruby_static_id_status
NORETURN(VALUE rb_f_raise(int argc, VALUE *argv));
/* eval_error.c */