summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-03-17 19:21:01 +0000
committerJim Meyering <jim@meyering.net>2003-03-17 19:21:01 +0000
commitf9cfbe069c6048387a6642f3a210e808e1ce2e3a (patch)
tree1120190afb768eb06f218fd78879a1bb7d898a27 /lib
parent2de612e2d0dfffc8fbe7d0cc1fed44d9da067797 (diff)
downloadcoreutils-f9cfbe069c6048387a6642f3a210e808e1ce2e3a.tar.xz
(fchown): Put function type on its own line.
Diffstat (limited to 'lib')
-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;