PatchworkOS  19e446b
A non-POSIX operating system.
Loading...
Searching...
No Matches
fd_t.h
Go to the documentation of this file.
1#ifndef _INTERNAL_FD_T_H
2#define _INTERNAL_FD_T_H 1
3
4/**
5 * @addtogroup libstd
6 *
7 * @{
8 */
9
10typedef __UINT64_TYPE__ fd_t; ///< File descriptor type.
11
12#define FD_NONE ((fd_t) - 1) ///< No file descriptor.
13
14#define FD_CWD ((fd_t) - 2) ///< Use the current working directory.)
15
16/** @} */
17
18#endif
__UINT64_TYPE__ fd_t
File descriptor type.
Definition fd_t.h:10