diff --git a/equalhash.h b/equalhash.h index a6f086d..03a5a3c 100644 --- a/equalhash.h +++ b/equalhash.h @@ -1,5 +1,5 @@ -#ifndef __EQUALHASH_H_ -#define __EQUALHASH_H_ +#ifndef EQUALHASH_H +#define EQUALHASH_H #include "htableh.inc" diff --git a/flisp.h b/flisp.h index f168d1d..c74ed2f 100644 --- a/flisp.h +++ b/flisp.h @@ -1,5 +1,5 @@ -#ifndef _FLISP_H_ -#define _FLISP_H_ +#ifndef FLISP_H +#define FLISP_H typedef uptrint_t value_t; typedef int_t fixnum_t; diff --git a/opcodes.h b/opcodes.h index bdccc15..593270c 100644 --- a/opcodes.h +++ b/opcodes.h @@ -1,5 +1,5 @@ -#ifndef __OPCODES_H_ -#define __OPCODES_H_ +#ifndef OPCODES_H +#define OPCODES_H enum { OP_NOP=0, OP_DUP, OP_POP, OP_CALL, OP_TCALL, OP_JMP, OP_BRF, OP_BRT,