trailing newlines
ugh
This commit is contained in:
parent
7c92f500b3
commit
0eb8b37236
@ -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_md1_def].m1_d = m_md1D;
|
||||
ti[t_md2_def].m2_d = m_md2D;
|
||||
}
|
||||
}
|
||||
|
||||
@ -93,4 +93,4 @@ void harr_init() {
|
||||
ti[t_harr].free = harr_free;
|
||||
ti[t_harr].print = harr_print;
|
||||
ti[t_harr].get = harr_get;
|
||||
}
|
||||
}
|
||||
|
||||
@ -58,4 +58,3 @@ void i32arr_init() {
|
||||
ti[t_i32arr].print = i32arr_print;
|
||||
ti[t_i32arr].get = i32arr_get;
|
||||
}
|
||||
|
||||
|
||||
@ -164,4 +164,4 @@ int main() {
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@ -101,4 +101,4 @@ void md1_init() { ba(tbl) ba(scan)
|
||||
|
||||
#undef ba
|
||||
#undef bd
|
||||
#undef bm
|
||||
#undef bm
|
||||
|
||||
@ -17,4 +17,4 @@ void md2_init() { ba(val) ba(fillBy) }
|
||||
|
||||
#undef ba
|
||||
#undef bd
|
||||
#undef bm
|
||||
#undef bm
|
||||
|
||||
@ -113,4 +113,4 @@ void sfns_init() { ba(shape) ba(pick) bm(ud) ba(pair) bm(fne) ba(lt) ba(rt)
|
||||
|
||||
#undef ba
|
||||
#undef bd
|
||||
#undef bm
|
||||
#undef bm
|
||||
|
||||
@ -31,4 +31,4 @@ void printUTF8(u32 c) {
|
||||
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 printf("%c%c%c%c", 0xF0| c>>18, 0x80| (c>>12 &0x3F), 0x80| (c>>6 &0x3F), 0x80| (c&0x3F));
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user