PatchworkOS  966e257
A non-POSIX operating system.
Loading...
Searching...
No Matches
gid_t.h
Go to the documentation of this file.
1#ifndef _AUX_GID_T_H
2#define _AUX_GID_T_H 1
3
4/**
5 * @brief Group Identifier.
6 * @ingroup libstd
7 *
8 * The `gid_t` type is used to store group identifiers.
9 *
10 */
11typedef __UINT64_TYPE__ gid_t;
12
13/**
14 * @brief Invalid group ID.
15 */
16#define GID_NONE 0
17
18#endif
__UINT64_TYPE__ gid_t
Group Identifier.
Definition gid_t.h:11