Skip to content

Commit

Permalink
removing leading/trailing underscores from preprocessor symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Feb 20, 2012
1 parent 6ed61e6 commit a39e4f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions equalhash.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef __EQUALHASH_H_
#define __EQUALHASH_H_
#ifndef EQUALHASH_H
#define EQUALHASH_H

#include "htableh.inc"

Expand Down
4 changes: 2 additions & 2 deletions flisp.h
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
4 changes: 2 additions & 2 deletions opcodes.h
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit a39e4f3

Please sign in to comment.