removing leading/trailing underscores from preprocessor symbols

This commit is contained in:
Jeff Bezanson 2012-02-20 17:43:53 -05:00
parent 6ed61e66ac
commit a39e4f366d
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
#ifndef __EQUALHASH_H_
#define __EQUALHASH_H_
#ifndef EQUALHASH_H
#define EQUALHASH_H
#include "htableh.inc"

View File

@ -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;

View File

@ -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,