mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
18 lines
397 B
C
18 lines
397 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_SOL_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_SOL_H_
|
|
|
|
#define SOL_IP 0
|
|
#define SOL_ICMP 1
|
|
#define SOL_TCP 6
|
|
#define SOL_UDP 17
|
|
#define SOL_IPV6 41
|
|
#define SOL_ICMPV6 58
|
|
#define SOL_RAW 255
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const int SOL_SOCKET;
|
|
#define SOL_SOCKET SOL_SOCKET
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_SOL_H_ */
|