Improve dead code elimination

This commit is contained in:
Justine Tunney 2021-02-08 04:04:42 -08:00
parent 760db8c5ad
commit 0e36cb3ac4
6606 changed files with 9685 additions and 9854 deletions

View file

@ -4,48 +4,48 @@
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
hidden extern const long SIGABRT;
hidden extern const long SIGALRM;
hidden extern const long SIGBUS;
hidden extern const long SIGCHLD;
hidden extern const long SIGCONT;
hidden extern const long SIGFPE;
hidden extern const long SIGHUP;
hidden extern const long SIGILL;
hidden extern const long SIGINT;
hidden extern const long SIGIO;
hidden extern const long SIGIOT;
hidden extern const long SIGKILL;
hidden extern const long SIGPIPE;
hidden extern const long SIGPOLL;
hidden extern const long SIGPROF;
hidden extern const long SIGPWR;
hidden extern const long SIGQUIT;
hidden extern const long SIGRTMAX;
hidden extern const long SIGRTMIN;
hidden extern const long SIGSEGV;
hidden extern const long SIGSTKFLT;
hidden extern const long SIGSTKSZ;
hidden extern const long SIGSTOP;
hidden extern const long SIGSYS;
hidden extern const long SIGTERM;
hidden extern const long SIGTRAP;
hidden extern const long SIGTSTP;
hidden extern const long SIGTTIN;
hidden extern const long SIGTTOU;
hidden extern const long SIGUNUSED;
hidden extern const long SIGURG;
hidden extern const long SIGUSR1;
hidden extern const long SIGUSR2;
hidden extern const long SIGVTALRM;
hidden extern const long SIGWINCH;
hidden extern const long SIGXCPU;
hidden extern const long SIGXFSZ;
extern const long SIGABRT;
extern const long SIGALRM;
extern const long SIGBUS;
extern const long SIGCHLD;
extern const long SIGCONT;
extern const long SIGFPE;
extern const long SIGHUP;
extern const long SIGILL;
extern const long SIGINT;
extern const long SIGIO;
extern const long SIGIOT;
extern const long SIGKILL;
extern const long SIGPIPE;
extern const long SIGPOLL;
extern const long SIGPROF;
extern const long SIGPWR;
extern const long SIGQUIT;
extern const long SIGRTMAX;
extern const long SIGRTMIN;
extern const long SIGSEGV;
extern const long SIGSTKFLT;
extern const long SIGSTKSZ;
extern const long SIGSTOP;
extern const long SIGSYS;
extern const long SIGTERM;
extern const long SIGTRAP;
extern const long SIGTSTP;
extern const long SIGTTIN;
extern const long SIGTTOU;
extern const long SIGUNUSED;
extern const long SIGURG;
extern const long SIGUSR1;
extern const long SIGUSR2;
extern const long SIGVTALRM;
extern const long SIGWINCH;
extern const long SIGXCPU;
extern const long SIGXFSZ;
hidden extern const long SIG_ATOMIC_MIN;
hidden extern const long SIG_BLOCK;
hidden extern const long SIG_SETMASK;
hidden extern const long SIG_UNBLOCK;
extern const long SIG_ATOMIC_MIN;
extern const long SIG_BLOCK;
extern const long SIG_SETMASK;
extern const long SIG_UNBLOCK;
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */