Commit 4bc43803 authored by kano4's avatar kano4

Add include guard in node.h

parent fbbe6309
......@@ -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 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment