shithub: femtolisp

Download patch

ref: a39e4f366debdc845fd76f162a9865b84f22c003
parent: 6ed61e66ac92b07c5424b0364d1c7589e1ddd437
author: Jeff Bezanson <bezanson@post.harvard.edu>
date: Mon Feb 20 12:43:53 EST 2012

removing leading/trailing underscores from preprocessor symbols

--- 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"
 
--- 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;
--- 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,