mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-03 23:13:50 +08:00
18 lines
337 B
C
18 lines
337 B
C
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
#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;
|
|
}
|