mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 23:08:31 +00:00
Fix bugs and make code tinier
- Fixed bug where stdio eof wasn't being sticky - Fixed bug where fseeko() wasn't clearing eof state - Removed assert() usage from libc favoring _unassert() / _npassert()
This commit is contained in:
parent
9b7c8db846
commit
d5910e2673
115 changed files with 510 additions and 290 deletions
|
@ -120,7 +120,7 @@ static void CheckSignalHandler(int sig) {
|
|||
#if 0
|
||||
int i;
|
||||
struct sigaction sa = {0};
|
||||
assert(0 <= sig - 1 && sig - 1 < ARRAYLEN(wanthandlers));
|
||||
_unassert(0 <= sig - 1 && sig - 1 < ARRAYLEN(wanthandlers));
|
||||
CHECK_EQ(0, sigaction(sig, 0, &sa));
|
||||
CHECK_EQ(0, memcmp(wanthandlers + sig - 1, &sa, sizeof(sa)),
|
||||
"signal handler for %s was %p/%#x/%#x:%x "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue