We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf24264 commit b3e70beCopy full SHA for b3e70be
lisp.h
@@ -1,5 +1,4 @@
1
-#ifndef LISP_H
2
-#define LISP_H
+#pragma once
3
4
#include <stdbool.h>
5
#include <stdint.h>
@@ -475,5 +474,3 @@ StObject St__Eval_INSN(StObject module, StObject insn);
475
474
StObject St_MacroExpand(StObject module, StObject expr);
476
StObject St_SyntaxExpand(StObject module, StObject expr);
477
StObject St_Compile(StObject expr, StObject module, StObject next);
478
-
479
-#endif
subr.h
-#ifndef SUBR_H
-#define SUBR_H
#include "lisp.h"
@@ -47,5 +46,3 @@ static inline StObject St_Arg(StCallInfo *cinfo, int i)
47
46
{
48
return ST_VECTOR_DATA(cinfo->argstack)[cinfo->offset + ~i];
49
}
50
51
0 commit comments