From: Jim Meyering Date: Mon, 17 Mar 2003 19:21:01 +0000 (+0000) Subject: (fchown): Put function type on its own line. X-Git-Tag: v4.5.11~66 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f9cfbe069c6048387a6642f3a210e808e1ce2e3a;p=thirdparty%2Fcoreutils.git (fchown): Put function type on its own line. --- diff --git a/lib/fchown-stub.c b/lib/fchown-stub.c index 6e7c4f9251..beb336cafa 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;