From a39e4f366debdc845fd76f162a9865b84f22c003 Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Mon, 20 Feb 2012 17:43:53 -0500 Subject: [PATCH] removing leading/trailing underscores from preprocessor symbols --- equalhash.h | 4 ++-- flisp.h | 4 ++-- opcodes.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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,