mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-28 08:12:28 +00:00
more modeline errata (#1019)
Somehow or another, I previously had missed `BUILD.mk` files. In the process I found a few straggler cases where the modeline was different from the file, including one very involved manual fix where a file had been treated like it was ts=2 and ts=8 on separate occasions. The commit history in the PR shows the gory details; the BUILD.mk was automated, everything else was mostly manual.
This commit is contained in:
parent
60813003a3
commit
3a8e01a77a
202 changed files with 879 additions and 879 deletions
|
@ -63,7 +63,7 @@ static inline void swapfunc(char *, char *, size_t, int);
|
|||
TYPE t = *pi; \
|
||||
*pi++ = *pj; \
|
||||
*pj++ = t; \
|
||||
} while (--i > 0); \
|
||||
} while (--i > 0); \
|
||||
}
|
||||
|
||||
static inline void
|
||||
|
@ -110,7 +110,7 @@ med3(char *a, char *b, char *c, CMPPAR)
|
|||
{
|
||||
return CMP(a, b) < 0 ?
|
||||
(CMP(b, c) < 0 ? b : (CMP(a, c) < 0 ? c : a ))
|
||||
:(CMP(b, c) > 0 ? b : (CMP(a, c) < 0 ? a : c ));
|
||||
:(CMP(b, c) > 0 ? b : (CMP(a, c) < 0 ? a : c ));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue