Unify include guard styles and header comments.

This commit is contained in:
Tatsuhiko Kubo
2014-08-21 13:27:37 +09:00
parent 4d72d65db1
commit 3b904e9408
5 changed files with 15 additions and 9 deletions
+4 -4
View File
@@ -1,11 +1,11 @@
/*
** opcode.h - RiteVM operation codes
** mruby/opcode.h - RiteVM operation codes
**
** See Copyright Notice in mruby.h
*/
#ifndef OPCODE_H
#define OPCODE_H
#ifndef MRUBY_OPCODE_H
#define MRUBY_OPCODE_H
#define MAXARG_Bx (0xffff)
#define MAXARG_sBx (MAXARG_Bx>>1) /* `sBx' is signed */
@@ -157,4 +157,4 @@ enum {
#define OP_R_BREAK 1
#define OP_R_RETURN 2
#endif /* OPCODE_H */
#endif /* MRUBY_OPCODE_H */