2023-06-18 07:55:09 +00:00
|
|
|
#ifndef _UNISTD_H
|
|
|
|
#define _UNISTD_H
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/calls/calls.h"
|
|
|
|
#include "libc/calls/weirdtypes.h"
|
2022-09-06 18:22:08 +00:00
|
|
|
#include "libc/runtime/pathconf.h"
|
2022-10-11 00:52:41 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
2022-09-04 07:10:17 +00:00
|
|
|
#include "libc/runtime/sysconf.h"
|
2022-10-11 00:52:41 +00:00
|
|
|
#include "libc/sysv/consts/f.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/sysv/consts/fileno.h"
|
|
|
|
#include "libc/sysv/consts/o.h"
|
2022-08-06 16:56:17 +00:00
|
|
|
#include "libc/sysv/consts/ok.h"
|
2024-05-05 06:05:36 +00:00
|
|
|
#include "libc/time.h"
|
2024-02-23 15:39:44 +00:00
|
|
|
#include "libc/unistd.h"
|
2023-08-15 05:22:58 +00:00
|
|
|
#include "third_party/getopt/long1.h"
|
2022-10-11 00:52:41 +00:00
|
|
|
#include "third_party/musl/crypt.h"
|
2022-10-13 20:44:41 +00:00
|
|
|
#include "third_party/musl/lockf.h"
|
2023-06-18 07:55:09 +00:00
|
|
|
#endif /* _UNISTD_H */
|