mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-23 05:42:29 +00:00
Add a turfwar hilbert decoration
This commit is contained in:
parent
a6586cafb2
commit
6dcdf91458
9 changed files with 186 additions and 81 deletions
21
libc/ar.h
Normal file
21
libc/ar.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef COSMOPOLITAN_LIBC_AR_H_
|
||||
#define COSMOPOLITAN_LIBC_AR_H_
|
||||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
#define ARMAG "!<arch>\n"
|
||||
#define SARMAG 8
|
||||
#define ARFMAG "`\n"
|
||||
|
||||
struct ar_hdr {
|
||||
char ar_name[16];
|
||||
char ar_date[12];
|
||||
char ar_uid[6], ar_gid[6];
|
||||
char ar_mode[8];
|
||||
char ar_size[10];
|
||||
char ar_fmag[2];
|
||||
};
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
#endif /* COSMOPOLITAN_LIBC_AR_H_ */
|
4
libc/isystem/ar.h
Normal file
4
libc/isystem/ar.h
Normal file
|
@ -0,0 +1,4 @@
|
|||
#ifndef COSMOPOLITAN_LIBC_ISYSTEM_AR_H_
|
||||
#define COSMOPOLITAN_LIBC_ISYSTEM_AR_H_
|
||||
#include "libc/ar.h"
|
||||
#endif /* COSMOPOLITAN_LIBC_ISYSTEM_AR_H_ */
|
|
@ -1,5 +1,6 @@
|
|||
#ifndef LIBC_ISYSTEM_STRING_H_
|
||||
#define LIBC_ISYSTEM_STRING_H_
|
||||
#include "libc/mem/alg.h"
|
||||
#include "libc/mem/mem.h"
|
||||
#include "libc/str/str.h"
|
||||
#endif
|
||||
|
|
|
@ -785,7 +785,7 @@ syscon tcp TCP_SAVED_SYN 28 0 0 0 0 0 # get recorded syn packets
|
|||
syscon tcp TCP_THIN_DUPACK 17 0 0 0 0 0 # what is it
|
||||
syscon tcp TCP_QUEUE_SEQ 21 0 0 0 0 0 # what is it
|
||||
syscon tcp TCP_WINDOW_CLAMP 10 0 0 0 0 0 # what is it
|
||||
syscon tcp TCP_DEFER_ACCEPT 9 0 0 0 0 0 # what is it
|
||||
syscon tcp TCP_DEFER_ACCEPT 9 0 0 0 0 0 # defer accept() until readable data has arrived
|
||||
syscon tcp TCP_REPAIR 19 0 0 0 0 0 # what is it
|
||||
syscon tcp TCP_REPAIR_OPTIONS 22 0 0 0 0 0 # what is it
|
||||
syscon tcp TCP_REPAIR_QUEUE 20 0 0 0 0 0 # what is it
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue