summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cvs/vms/pwd.h
blob: 3ca5dbce872075962459a609e5eac5371fbd888a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _PWD_H
#define _PWD_H

#include <sys/types.h>

struct passwd {
   char  *pw_name;
   uid_t  pw_uid;  
   gid_t  pw_gid;
   char  *pw_dir;
   };

struct passwd *getpwuid(uid_t);
struct passwd *getpwnam(char *);
char *getlogin(void); 

#else
#endif /* _PWD_H */