mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-25 20:10:29 +00:00
Improve dead code elimination
This commit is contained in:
parent
760db8c5ad
commit
0e36cb3ac4
6606 changed files with 9685 additions and 9854 deletions
|
@ -4,17 +4,17 @@
|
|||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
hidden extern const long TIOCPKT;
|
||||
hidden extern const long TIOCPKT_DATA;
|
||||
hidden extern const long TIOCPKT_DOSTOP;
|
||||
hidden extern const long TIOCPKT_FLUSHREAD;
|
||||
hidden extern const long TIOCPKT_FLUSHWRITE;
|
||||
hidden extern const long TIOCPKT_IOCTL;
|
||||
hidden extern const long TIOCPKT_NOSTOP;
|
||||
hidden extern const long TIOCPKT_START;
|
||||
hidden extern const long TIOCPKT_STOP;
|
||||
hidden extern const long TIOCSPTLCK;
|
||||
hidden extern const long PTMGET;
|
||||
extern const long TIOCPKT;
|
||||
extern const long TIOCPKT_DATA;
|
||||
extern const long TIOCPKT_DOSTOP;
|
||||
extern const long TIOCPKT_FLUSHREAD;
|
||||
extern const long TIOCPKT_FLUSHWRITE;
|
||||
extern const long TIOCPKT_IOCTL;
|
||||
extern const long TIOCPKT_NOSTOP;
|
||||
extern const long TIOCPKT_START;
|
||||
extern const long TIOCPKT_STOP;
|
||||
extern const long TIOCSPTLCK;
|
||||
extern const long PTMGET;
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
|
@ -22,13 +22,13 @@ COSMOPOLITAN_C_END_
|
|||
#define TIOCPKT SYMBOLIC(TIOCPKT)
|
||||
#define TIOCSPTLCK SYMBOLIC(TIOCSPTLCK)
|
||||
#define PTMGET SYMBOLIC(PTMGET)
|
||||
#define TIOCPKT_DATA LITERALLY(0b0000000000000000)
|
||||
#define TIOCPKT_DOSTOP LITERALLY(0b0000000000000001)
|
||||
#define TIOCPKT_FLUSHREAD LITERALLY(0b0000000000000010)
|
||||
#define TIOCPKT_FLUSHWRITE LITERALLY(0b0000000000000100)
|
||||
#define TIOCPKT_IOCTL LITERALLY(0b0000000000001000)
|
||||
#define TIOCPKT_NOSTOP LITERALLY(0b0000000000010000)
|
||||
#define TIOCPKT_START LITERALLY(0b0000000000100000)
|
||||
#define TIOCPKT_STOP LITERALLY(0b0000000001000000)
|
||||
#define TIOCPKT_DATA LITERALLY(0x00)
|
||||
#define TIOCPKT_DOSTOP LITERALLY(0x01)
|
||||
#define TIOCPKT_FLUSHREAD LITERALLY(0x02)
|
||||
#define TIOCPKT_FLUSHWRITE LITERALLY(0x04)
|
||||
#define TIOCPKT_IOCTL LITERALLY(0x08)
|
||||
#define TIOCPKT_NOSTOP LITERALLY(0x10)
|
||||
#define TIOCPKT_START LITERALLY(0x20)
|
||||
#define TIOCPKT_STOP LITERALLY(0x40)
|
||||
|
||||
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_PTY_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue