Mercurial > hg > xemacs-beta
comparison src/syspwd.h @ 771:943eaba38521
[xemacs-hg @ 2002-03-13 08:51:24 by ben]
The big ben-mule-21-5 check-in!
Various files were added and deleted. See CHANGES-ben-mule.
There are still some test suite failures. No crashes, though.
Many of the failures have to do with problems in the test suite itself
rather than in the actual code. I'll be addressing these in the next
day or so -- none of the test suite failures are at all critical.
Meanwhile I'll be trying to address the biggest issues -- i.e. build
or run failures, which will almost certainly happen on various platforms.
All comments should be sent to ben@xemacs.org -- use a Cc: if necessary
when sending to mailing lists. There will be pre- and post- tags,
something like
pre-ben-mule-21-5-merge-in, and
post-ben-mule-21-5-merge-in.
author | ben |
---|---|
date | Wed, 13 Mar 2002 08:54:06 +0000 |
parents | abe6d1db359e |
children | 804517e16990 |
comparison
equal
deleted
inserted
replaced
770:336a418893b5 | 771:943eaba38521 |
---|---|
23 | 23 |
24 # include <pwd.h> | 24 # include <pwd.h> |
25 | 25 |
26 #else /* WIN32_NATIVE */ | 26 #else /* WIN32_NATIVE */ |
27 | 27 |
28 struct passwd { | 28 struct passwd |
29 char *pw_name; | 29 { |
30 char *pw_passwd; | 30 char *pw_name; |
31 int pw_uid; | 31 char *pw_passwd; |
32 int pw_gid; | 32 int pw_uid; |
33 int pw_quota; | 33 int pw_gid; |
34 char *pw_gecos; | 34 int pw_quota; |
35 char *pw_dir; | 35 char *pw_gecos; |
36 char *pw_shell; | 36 char *pw_dir; |
37 char *pw_shell; | |
37 }; | 38 }; |
38 | 39 |
40 #ifdef emacs | |
41 | |
42 struct passwd *getpwuid (uid_t uid); | |
43 struct passwd *getpwnam (const Intbyte *name); | |
44 uid_t getuid (void); | |
45 uid_t geteuid (void); | |
46 gid_t getgid (void); | |
47 gid_t getegid (void); | |
48 | |
49 #endif /* emacs */ | |
50 | |
39 #endif /* WIN32_NATIVE */ | 51 #endif /* WIN32_NATIVE */ |
52 | |
53 #ifdef emacs | |
54 | |
55 struct passwd *qxe_getpwnam (const Intbyte *name); | |
56 struct passwd *qxe_getpwuid (uid_t uid); | |
57 struct passwd *qxe_getpwent (void); | |
58 | |
59 #endif /* emacs */ | |
60 |