diff options
author | dzwdz | 2021-08-24 16:39:35 +0200 |
---|---|---|
committer | dzwdz | 2021-08-24 16:39:35 +0200 |
commit | 9958bdacfa51b5d8eee386b863cdcc2d76f44f4a (patch) | |
tree | 8685b3dd5a96b225acfc76314e1ed4f2cfeccaf6 /src/kernel/fd.h | |
parent | e6b76a8556e00c6f143679af8056c1b62e1c57a8 (diff) |
implement FD_SPECIAL_TTY, an stdout equalivent
Diffstat (limited to 'src/kernel/fd.h')
-rw-r--r-- | src/kernel/fd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kernel/fd.h b/src/kernel/fd.h index 7f7cbdd..6950b9b 100644 --- a/src/kernel/fd.h +++ b/src/kernel/fd.h @@ -7,6 +7,7 @@ typedef int fd_t; // TODO duplicated in syscalls.h enum fd_type { FD_EMPTY, + FD_SPECIAL_TTY, }; struct fd { |