]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(lstat): Put function type on its own line.
authorJim Meyering <jim@meyering.net>
Mon, 17 Mar 2003 19:21:13 +0000 (19:21 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 17 Mar 2003 19:21:13 +0000 (19:21 +0000)
lib/lstat-stub.c

index 9ed16359862dd1fe5d6ee101ecb4b50394236f1f..07ad91f9683cef34141de04d4b8a7d8ae29b358f 100644 (file)
@@ -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);
 }