blob: 3fdb5d082cb4f97d35fdc0c632042efd6b30d56c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef __PWD
#define __PWD
#ifndef _POSIX_SOURCE
This header file is not defined in pure ANSI
#endif
#pragma lib "/$M/lib/ape/libap.a"
#include <sys/types.h>
struct passwd {
char *pw_name;
uid_t pw_uid;
gid_t pw_gid;
char *pw_dir;
char *pw_shell;
};
#ifdef __cplusplus
extern "C" {
#endif
extern struct passwd *getpwuid(uid_t);
extern struct passwd *getpwnam(const char *);
#ifdef __cplusplus
}
#endif
#endif
|