mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-08 07:23:33 +00:00
18bb5888e1
- Remove PAGESIZE constant - Fix realloc() documentation - Fix ttyname_r() error reporting - Make forking more reliable on Windows - Make execvp() a few microseconds faster - Make system() a few microseconds faster - Tighten up the socket-related magic numbers - Loosen restrictions on mmap() offset alignment - Improve GetProgramExecutableName() with getenv("_") - Use mkstemp() as basis for mktemp(), tmpfile(), tmpfd() - Fix flakes in pthread_cancel_test, unix_test, fork_test - Fix recently introduced futex stack overflow regression - Let sockets be passed as stdio to subprocesses on Windows - Improve security of bind() on Windows w/ SO_EXCLUSIVEADDRUSE
68 lines
1.8 KiB
C
68 lines
1.8 KiB
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const uint32_t B0;
|
|
extern const uint32_t B50;
|
|
extern const uint32_t B75;
|
|
extern const uint32_t B110;
|
|
extern const uint32_t B134;
|
|
extern const uint32_t B150;
|
|
extern const uint32_t B200;
|
|
extern const uint32_t B300;
|
|
extern const uint32_t B600;
|
|
extern const uint32_t B1200;
|
|
extern const uint32_t B1800;
|
|
extern const uint32_t B2400;
|
|
extern const uint32_t B4800;
|
|
extern const uint32_t B9600;
|
|
extern const uint32_t B19200;
|
|
extern const uint32_t B38400;
|
|
extern const uint32_t B57600;
|
|
extern const uint32_t B115200;
|
|
extern const uint32_t B230400;
|
|
extern const uint32_t B500000;
|
|
extern const uint32_t B576000;
|
|
extern const uint32_t B1000000;
|
|
extern const uint32_t B1152000;
|
|
extern const uint32_t B1500000;
|
|
extern const uint32_t B2000000;
|
|
extern const uint32_t B2500000;
|
|
extern const uint32_t B3000000;
|
|
extern const uint32_t B3500000;
|
|
extern const uint32_t B4000000;
|
|
|
|
#define B0 0
|
|
#define B50 B50
|
|
#define B75 B75
|
|
#define B110 B110
|
|
#define B134 B134
|
|
#define B150 B150
|
|
#define B200 B200
|
|
#define B300 B300
|
|
#define B600 B600
|
|
#define B1200 B1200
|
|
#define B1800 B1800
|
|
#define B2400 B2400
|
|
#define B4800 B4800
|
|
#define B9600 B9600
|
|
#define B19200 B19200
|
|
#define B38400 B38400
|
|
#define B57600 B57600
|
|
#define B115200 B115200
|
|
#define B230400 B230400
|
|
#define B500000 B500000
|
|
#define B576000 B576000
|
|
#define B1000000 B1000000
|
|
#define B1152000 B1152000
|
|
#define B1500000 B1500000
|
|
#define B2000000 B2000000
|
|
#define B2500000 B2500000
|
|
#define B3000000 B3000000
|
|
#define B3500000 B3500000
|
|
#define B4000000 B4000000
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_ */
|