Reduce header complexity

- Remove most __ASSEMBLER__ __LINKER__ ifdefs
- Rename libc/intrin/bits.h to libc/serialize.h
- Block pthread cancelation in fchmodat() polyfill
- Remove `clang-format off` statements in third_party
This commit is contained in:
Justine Tunney 2023-11-28 14:24:28 -08:00
parent 96f979dfc5
commit fa20edc44d
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
3057 changed files with 410 additions and 4398 deletions

View file

@ -56,7 +56,11 @@ static int inet_pton_inet6_impl(const char *src, uint8_t *dst) {
if (zeroFound) {
return 0;
}
res = resTemp << (4 * digitsLeft);
if (digitsLeft == 32) {
res = 0;
} else {
res = resTemp << (4 * digitsLeft);
}
resTemp = 0;
digitsLeft -= 4;
zeroFound = true;