summaryrefslogtreecommitdiff
path: root/lib/fchown-stub.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fchown-stub.c')
-rw-r--r--lib/fchown-stub.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/fchown-stub.c b/lib/fchown-stub.c
index 6e7c4f925..beb336caf 100644
--- a/lib/fchown-stub.c
+++ b/lib/fchown-stub.c
@@ -7,7 +7,8 @@
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)
+int
+fchown (int fd, uid_t uid, gid_t gid)
{
errno = EPERM;
return -1;