summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/lstat-stub.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/lstat-stub.c b/lib/lstat-stub.c
index 9ed163598..07ad91f96 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);
}