2026-07-06 22:13:57 -05:00
|
|
|
#ifndef RLIBC_UNISTD_H
|
|
|
|
|
#define RLIBC_UNISTD_H
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
#include <syscall.h>
|
2026-06-28 17:58:58 -05:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
#define STDIN_FILENO 0
|
|
|
|
|
#define STDOUT_FILENO 1
|
|
|
|
|
#define STDERR_FILENO 2
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
#define SEEK_SET 0
|
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
|
#define SEEK_END 2
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
#endif
|