aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/ntlib.c
diff options
context:
space:
mode:
authorKenichi Handa2010-04-07 15:08:27 +0900
committerKenichi Handa2010-04-07 15:08:27 +0900
commit64e692b56e84153d45b2c46d833dce14243f7c69 (patch)
treedb049db5995f5cfcba3db28dfeb305ef5e04157c /lib-src/ntlib.c
parent86a366f4015868f03bc8399b412ea767e9337072 (diff)
parente59c4233e20bfb2b8b50c77a42023a2473405391 (diff)
downloademacs-64e692b56e84153d45b2c46d833dce14243f7c69.tar.gz
emacs-64e692b56e84153d45b2c46d833dce14243f7c69.zip
merge trunk
Diffstat (limited to 'lib-src/ntlib.c')
-rw-r--r--lib-src/ntlib.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c
index ae10caecd22..c815f32d51d 100644
--- a/lib-src/ntlib.c
+++ b/lib-src/ntlib.c
@@ -125,12 +125,30 @@ getuid ()
125 return 0; 125 return 0;
126} 126}
127 127
128unsigned
129getgid ()
130{
131 return 0;
132}
133
134unsigned
135getegid ()
136{
137 return 0;
138}
139
128int 140int
129setuid (unsigned uid) 141setuid (unsigned uid)
130{ 142{
131 return 0; 143 return 0;
132} 144}
133 145
146int
147setegid (unsigned gid)
148{
149 return 0;
150}
151
134struct passwd * 152struct passwd *
135getpwuid (unsigned uid) 153getpwuid (unsigned uid)
136{ 154{