mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
3eec69f9c3
- tcgetpgrp(STDIN_FILENO) should be equal to getpgrp() on Windows also, found while reading wget source code which uses this check to decide whether to print to stderr or to a file - IN6_ADDR_ARE_EQUAL is a comparison macro used when IPV6 is allowed, found while reading CPython3.11 source code - the changes in signal.h and addition of ucontext.h are because CPython3.11 source code expect sigaltstack to be available - the sqlite3.mk change is because CPython3.11 requires sqlite3 to be built with -DOMIT_SHARED_CACHE - unistd.h has getopt.h now, because some libraries like it there
16 lines
498 B
C
16 lines
498 B
C
#ifndef _UNISTD_H
|
|
#define _UNISTD_H
|
|
#include "libc/calls/calls.h"
|
|
#include "libc/calls/weirdtypes.h"
|
|
#include "libc/runtime/pathconf.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/runtime/sysconf.h"
|
|
#include "libc/sysv/consts/f.h"
|
|
#include "libc/sysv/consts/fileno.h"
|
|
#include "libc/sysv/consts/o.h"
|
|
#include "libc/sysv/consts/ok.h"
|
|
#include "libc/time/time.h"
|
|
#include "third_party/getopt/long.h"
|
|
#include "third_party/musl/crypt.h"
|
|
#include "third_party/musl/lockf.h"
|
|
#endif /* _UNISTD_H */
|