#pragma once #include struct passwd { char *pw_name; char *pw_passwd; uid_t pw_uid; gid_t pw_gid; char *pw_gecos; char *pw_dir; char *pw_shell; }; #ifdef _APHELEIA_SOURCE typedef struct passwd passwd_t; #endif #ifndef _KERNEL #include #endif