From: Jim Meyering Date: Mon, 17 Mar 2003 19:21:13 +0000 (+0000) Subject: (lstat): Put function type on its own line. X-Git-Tag: v4.5.11~65 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f3ad658b9883e69c6b4e4d7de12b2fd618ef664a;p=thirdparty%2Fcoreutils.git (lstat): Put function type on its own line. --- diff --git a/lib/lstat-stub.c b/lib/lstat-stub.c index 9ed1635986..07ad91f968 100644 --- a/lib/lstat-stub.c +++ b/lib/lstat-stub.c @@ -6,7 +6,8 @@ DJGPP 2.03 and earlier don't have `lstat' and don't support symlinks. */ -int lstat (const char *fname, struct stat *st_buf) +int +lstat (const char *fname, struct stat *st_buf) { return stat (fname, st_buf); }