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 /insnhelper.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 'insnhelper.h')
-rw-r--r-- | insnhelper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/insnhelper.h b/insnhelper.h index 9e18f1343..a862f2672 100644 --- a/insnhelper.h +++ b/insnhelper.h @@ -9,8 +9,8 @@ **********************************************************************/ -#ifndef _INSNHELPER_H_INCLUDED_ -#define _INSNHELPER_H_INCLUDED_ +#ifndef RUBY_INSNHELPER_H +#define RUBY_INSNHELPER_H #include "ruby/ruby.h" #include "ruby/node.h" @@ -145,4 +145,4 @@ CALL_METHOD(num, 0, 0, id, rb_method_node(klass, id), recv, CLASS_OF(recv)); \ } while (0) -#endif /* _INSNHELPER_H_INCLUDED_ */ +#endif /* RUBY_INSNHELPER_H */ |