summaryrefslogtreecommitdiffstats
path: root/id.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
commit065a055037dde6534b0899a371cd5c8b45d8407c (patch)
tree261091404f764fc0a2ac423aa322f44b0cb90b2e /id.h
parentccfedba8b4cebf9285189c5d21f7cb008235d6b2 (diff)
downloadruby-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 'id.h')
-rw-r--r--id.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/id.h b/id.h
index 3ea63db70..15654b2be 100644
--- a/id.h
+++ b/id.h
@@ -9,6 +9,9 @@
**********************************************************************/
+#ifndef RUBY_ID_H
+#define RUBY_ID_H
+
extern VALUE symIFUNC;
extern VALUE symCFUNC;
@@ -48,4 +51,4 @@ extern ID idAnswer;
extern ID idSend;
extern ID id__send__;
-
+#endif /* RUBY_ID_H */