diff options
Diffstat (limited to 'lib-src/ntlib.c')
-rw-r--r-- | lib-src/ntlib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c index 4ca7ae40aa1..bce4ce10f31 100644 --- a/lib-src/ntlib.c +++ b/lib-src/ntlib.c @@ -119,20 +119,20 @@ cuserid (char * s) return name; } -int +unsigned getuid () { return 0; } int -setuid (int uid) +setuid (unsigned uid) { return 0; } struct passwd * -getpwuid (int uid) +getpwuid (unsigned uid) { return NULL; } @@ -185,7 +185,7 @@ getpass (const char * prompt) } int -fchown (int fd, int uid, int gid) +fchown (int fd, unsigned uid, unsigned gid) { return 0; } |