diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-18 08:56:11 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-18 08:56:11 +0000 |
commit | 065a055037dde6534b0899a371cd5c8b45d8407c (patch) | |
tree | 261091404f764fc0a2ac423aa322f44b0cb90b2e /eval_intern.h | |
parent | ccfedba8b4cebf9285189c5d21f7cb008235d6b2 (diff) | |
download | ruby-065a055037dde6534b0899a371cd5c8b45d8407c.tar.gz ruby-065a055037dde6534b0899a371cd5c8b45d8407c.tar.xz ruby-065a055037dde6534b0899a371cd5c8b45d8407c.zip |
* eval_intern.h, insnhelper.h, thread_pthread.h, vm_core.h, vm_opts.h:
prefixed include guards with RUBY.
* id.h: added include guard.
* regenc.h, regint.h, regparse.h: prefixed include guards with
ONIGURUMA.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval_intern.h')
-rw-r--r-- | eval_intern.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eval_intern.h b/eval_intern.h index 884d7c42a..4436fcc32 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -1,6 +1,6 @@ -#ifndef EVAL_INTERN_H_INCLUDED -#define EVAL_INTERN_H_INCLUDED +#ifndef RUBY_EVAL_INTERN_H +#define RUBY_EVAL_INTERN_H #define PASS_PASSED_BLOCK() \ (GET_THREAD()->passed_block = \ @@ -243,4 +243,4 @@ VALUE rb_vm_top_self(); #define ruby_cbase() vm_get_cbase(GET_THREAD()) -#endif /* EVAL_INTERN_H_INCLUDED */ +#endif /* RUBY_EVAL_INTERN_H */ |