trailing newlines

ugh
This commit is contained in:
dzaima 2021-03-30 03:27:41 +03:00
parent 7c92f500b3
commit 0eb8b37236
11 changed files with 10 additions and 11 deletions

View File

@ -75,4 +75,4 @@ void derv_init() {
ti[t_atop].free = atop_free; ti[t_atop].print = atop_print; ti[t_atop].decompose = atop_decompose; ti[t_atop].free = atop_free; ti[t_atop].print = atop_print; ti[t_atop].decompose = atop_decompose;
ti[t_md1_def].m1_d = m_md1D; ti[t_md1_def].m1_d = m_md1D;
ti[t_md2_def].m2_d = m_md2D; ti[t_md2_def].m2_d = m_md2D;
} }

View File

@ -434,4 +434,4 @@ void arr_print(B x) {
} }
return x; return x;
} }
#endif #endif

View File

@ -93,4 +93,4 @@ void harr_init() {
ti[t_harr].free = harr_free; ti[t_harr].free = harr_free;
ti[t_harr].print = harr_print; ti[t_harr].print = harr_print;
ti[t_harr].get = harr_get; ti[t_harr].get = harr_get;
} }

View File

@ -58,4 +58,3 @@ void i32arr_init() {
ti[t_i32arr].print = i32arr_print; ti[t_i32arr].print = i32arr_print;
ti[t_i32arr].get = i32arr_get; ti[t_i32arr].get = i32arr_get;
} }

View File

@ -164,4 +164,4 @@ int main() {
} }
} }
#endif #endif
} }

View File

@ -101,4 +101,4 @@ void md1_init() { ba(tbl) ba(scan)
#undef ba #undef ba
#undef bd #undef bd
#undef bm #undef bm

View File

@ -17,4 +17,4 @@ void md2_init() { ba(val) ba(fillBy) }
#undef ba #undef ba
#undef bd #undef bd
#undef bm #undef bm

View File

@ -49,4 +49,4 @@ void mm_free(Value* x) {
} }
void mm_visit(B x) { void mm_visit(B x) {
} }

View File

@ -113,4 +113,4 @@ void sfns_init() { ba(shape) ba(pick) bm(ud) ba(pair) bm(fne) ba(lt) ba(rt)
#undef ba #undef ba
#undef bd #undef bd
#undef bm #undef bm

View File

@ -31,4 +31,4 @@ void printUTF8(u32 c) {
else if (c<=0x07FF) printf("%c%c" , 0xC0| c>>6 , 0x80| (c &0x3F) ); else if (c<=0x07FF) printf("%c%c" , 0xC0| c>>6 , 0x80| (c &0x3F) );
else if (c<=0xFFFF) printf("%c%c%c" , 0xE0| c>>12, 0x80| (c>>6 &0x3F), 0x80| (c &0x3F) ); else if (c<=0xFFFF) printf("%c%c%c" , 0xE0| c>>12, 0x80| (c>>6 &0x3F), 0x80| (c &0x3F) );
else printf("%c%c%c%c", 0xF0| c>>18, 0x80| (c>>12 &0x3F), 0x80| (c>>6 &0x3F), 0x80| (c&0x3F)); else printf("%c%c%c%c", 0xF0| c>>18, 0x80| (c>>12 &0x3F), 0x80| (c>>6 &0x3F), 0x80| (c&0x3F));
} }

View File

@ -464,4 +464,4 @@ void print_vmStack() {
for (i32 i = 0; i < (bcDepth>>1) + 1; i++) { printf(" %d", vmStack[i]); fflush(stdout); } for (i32 i = 0; i < (bcDepth>>1) + 1; i++) { printf(" %d", vmStack[i]); fflush(stdout); }
printf("\n"); fflush(stdout); printf("\n"); fflush(stdout);
#endif #endif
} }