2026-03-06 20:12:58 +00:00
|
|
|
#ifndef UNISTD_H_
|
|
|
|
|
#define UNISTD_H_
|
|
|
|
|
|
2026-03-10 19:15:59 +00:00
|
|
|
#include <stddef.h>
|
2026-03-06 20:12:58 +00:00
|
|
|
|
|
|
|
|
extern int open(const char *path, int flags);
|
|
|
|
|
extern int close(int fd);
|
|
|
|
|
|
2026-03-10 19:15:59 +00:00
|
|
|
extern int read(int fd, void *buf, size_t count);
|
|
|
|
|
extern int write(int fd, const void *buf, size_t count);
|
|
|
|
|
|
2026-03-06 20:12:58 +00:00
|
|
|
#endif
|