mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-07 00:23:23 +08:00
16 lines
308 B
C
16 lines
308 B
C
#include <config.h>
|
|
#include <sys/types.h>
|
|
#include <errno.h>
|
|
|
|
/* A trivial substitute for `fchown'.
|
|
|
|
DJGPP 2.03 and earlier (and perhaps later) don't have `fchown',
|
|
so we pretend no-one has permission for this operation. */
|
|
|
|
int
|
|
fchown (int fd, uid_t uid, gid_t gid)
|
|
{
|
|
errno = EPERM;
|
|
return -1;
|
|
}
|