shithub: scc

Download patch

ref: 47e8c646766773c8fda7e0fe44b10544c3f91695
parent: aa7ece0b0028c16b9657be6bece5e9c402133a52
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Tue Mar 17 13:43:04 EDT 2015

Remove inclue guard in cc.h

They are useless

--- a/inc/cc.h
+++ b/inc/cc.h
@@ -1,7 +1,4 @@
 
-#ifndef CC_H_
-#define CC_H_
-
 #ifndef __bool_true_and_false_defined
 #ifdef NBOOL
 typedef unsigned bool;
@@ -11,6 +8,7 @@
 #endif
 
 #define TINT short
+#define TLONG long
 
 #define RANK_BOOL    0
 #define RANK_SCHAR   1
@@ -66,4 +64,3 @@
 extern char *xstrdup(const char *s);
 extern void *xrealloc(void *buff, register size_t size);
 
-#endif