summaryrefslogtreecommitdiff
path: root/insnhelper.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-18 08:56:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-18 08:56:11 +0000
commit8a9993dfee20296431ac49ec48860c89160835c1 (patch)
tree261091404f764fc0a2ac423aa322f44b0cb90b2e /insnhelper.h
parent3a4bfbad0976c60dd557dcdb64b390d055e6446b (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@15112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insnhelper.h')
-rw-r--r--insnhelper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/insnhelper.h b/insnhelper.h
index 9e18f13437..a862f2672e 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 */