git.cappig.dev / apheleiaOS.git master

1
#pragma once
2
3
#include <sys/types.h>
4
5
struct passwd {
6
    char *pw_name;
7
    char *pw_passwd;
8
    uid_t pw_uid;
9
    gid_t pw_gid;
10
    char *pw_gecos;
11
    char *pw_dir;
12
    char *pw_shell;
13
};
14
15
#ifdef _APHELEIA_SOURCE
16
typedef struct passwd passwd_t;
17
#endif
18
19
#ifndef _KERNEL
20
#include <libc_usr/pwd.h>
21
#endif