Remove more nonstandard stuff from cosmopolitan.h

Fixes #61
This commit is contained in:
Justine Tunney 2021-02-28 23:42:35 -08:00
parent 5e069a64d4
commit d932948fb4
954 changed files with 1095 additions and 1342 deletions

View file

@ -7,7 +7,7 @@
*/
#include "libc/stdio/stdio.h"
#include "libc/str/str.h"
#include "third_party/zlib/deflate.h"
#include "third_party/zlib/deflate.internal.h"
#include "third_party/zlib/internal.h"
asm(".ident\t\"\\n\\n\
@ -822,7 +822,9 @@ void _tr_stored_block(struct DeflateState *s, charf *buf, uint64_t stored_len,
/**
* Flushes bits in bit buffer to pending output (leaves at most 7 bits)
*/
void _tr_flush_bits(struct DeflateState *s) { bi_flush(s); }
void _tr_flush_bits(struct DeflateState *s) {
bi_flush(s);
}
/**
* Sends one empty static block to give enough lookahead for inflate.