diff options
author | Jim Meyering <jim@meyering.net> | 2003-03-17 19:21:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-03-17 19:21:01 +0000 |
commit | f9cfbe069c6048387a6642f3a210e808e1ce2e3a (patch) | |
tree | 1120190afb768eb06f218fd78879a1bb7d898a27 /lib | |
parent | 2de612e2d0dfffc8fbe7d0cc1fed44d9da067797 (diff) | |
download | coreutils-f9cfbe069c6048387a6642f3a210e808e1ce2e3a.tar.xz |
(fchown): Put function type on its own line.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fchown-stub.c | 3 |
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; |