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: COREUTILS-4_5_11~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9cfbe069c6048387a6642f3a210e808e1ce2e3a;p=platform%2Fupstream%2Fcoreutils.git (fchown): Put function type on its own line. --- diff --git a/lib/fchown-stub.c b/lib/fchown-stub.c index 6e7c4f9..beb336c 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;