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