aboutsummaryrefslogtreecommitdiffstats
path: root/method.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-19 01:48:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-19 01:48:48 +0000
commit02fc7be07a98d6570d33205bb07bef04a1fd4950 (patch)
tree47c45ef4d1b848c2b0f9b1218166560619a4dfc6 /method.h
parentbe1eea17fa68c106bb35ffbd679b45f59db05233 (diff)
downloadruby-02fc7be07a98d6570d33205bb07bef04a1fd4950.tar.gz
iseq.h, method.h: fix include guards [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'method.h')
-rw-r--r--method.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/method.h b/method.h
index 982b1e3b7d..cb3eda1998 100644
--- a/method.h
+++ b/method.h
@@ -8,8 +8,8 @@
Copyright (C) 2009 Koichi Sasada
**********************************************************************/
-#ifndef METHOD_H
-#define METHOD_H
+#ifndef RUBY_METHOD_H
+#define RUBY_METHOD_H 1
#include "internal.h"
@@ -210,4 +210,4 @@ void rb_method_entry_copy(rb_method_entry_t *dst, const rb_method_entry_t *src);
void rb_scope_visibility_set(rb_method_visibility_t);
-#endif /* METHOD_H */
+#endif /* RUBY_METHOD_H */