mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-23 05:42:29 +00:00
Do work on curl/mbedtls/zstd
This change fixes stderr to be unbuffered. Added hardware AES on ARM64 to help safeguard against timing attacks. The curl.com command will be somewhat more pleasant to use.
This commit is contained in:
parent
a186143f62
commit
0d3c1c8b1a
37 changed files with 1565 additions and 290 deletions
|
@ -33,7 +33,7 @@ static FILE __stderr;
|
|||
__attribute__((__constructor__)) static void __stderr_init(void) {
|
||||
stderr = &__stderr;
|
||||
stderr->fd = STDERR_FILENO;
|
||||
stderr->bufmode = _IOLBF;
|
||||
stderr->bufmode = _IONBF;
|
||||
stderr->iomode = O_WRONLY;
|
||||
stderr->buf = stderr->mem;
|
||||
stderr->size = sizeof(stderr->mem);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue