Add include guard in node.h

This commit is contained in:
kano4
2013-03-05 23:09:34 +09:00
parent fbbe6309fc
commit 4bc4380335
+5
View File
@@ -4,6 +4,9 @@
** See Copyright Notice in mruby.h
*/
#ifndef NODE_H
#define NODE_H
enum node_type {
NODE_METHOD,
NODE_FBODY,
@@ -105,3 +108,5 @@ enum node_type {
NODE_HEREDOC,
NODE_LAST
};
#endif /* NODE_H */