diff options
author | 2008-03-16 19:46:14 +0000 | |
---|---|---|
committer | 2008-03-16 19:46:14 +0000 | |
commit | f2ba8946581ed5332dc7215ba8e8e7a1bc3d7f6d (patch) | |
tree | 64498c9358251ebc2ce5d1512d646c508942ecfb | |
parent | statvfs support (diff) | |
download | wireguard-openbsd-f2ba8946581ed5332dc7215ba8e8e7a1bc3d7f6d.tar.xz wireguard-openbsd-f2ba8946581ed5332dc7215ba8e8e7a1bc3d7f6d.zip |
indent
-rw-r--r-- | lib/libc/sys/statvfs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/sys/statvfs.c b/lib/libc/sys/statvfs.c index 71bbccd2146..34256b32a80 100644 --- a/lib/libc/sys/statvfs.c +++ b/lib/libc/sys/statvfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: statvfs.c,v 1.1 2008/03/16 19:44:34 otto Exp $ */ +/* $OpenBSD: statvfs.c,v 1.2 2008/03/16 19:46:14 deraadt Exp $ */ /* * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> @@ -55,7 +55,8 @@ fstatvfs(int fd, struct statvfs *p) return (ret); } -int statvfs(const char *path, struct statvfs *p) +int +statvfs(const char *path, struct statvfs *p) { struct statfs sb; int ret; |