diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
| commit | 58d38e25205c6ee5ef0796ffa2cd8e2ca6c6e7f3 (patch) | |
| tree | ee19d604b38f08d225b97c81a641deba71f33d6b /lib/libc/gen | |
| parent | 00f9b682956d9eda39f36dd9291d4313fc75025a (diff) | |
Notes
Diffstat (limited to 'lib/libc/gen')
| -rw-r--r-- | lib/libc/gen/statvfs.3 | 2 | ||||
| -rw-r--r-- | lib/libc/gen/statvfs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/statvfs.3 b/lib/libc/gen/statvfs.3 index e825790c9e2b..d15b160d6c25 100644 --- a/lib/libc/gen/statvfs.3 +++ b/lib/libc/gen/statvfs.3 @@ -40,7 +40,7 @@ .Sh SYNOPSIS .In sys/statvfs.h .Ft int -.Fn statvfs "const char *restrict path" "struct statvfs *restrict buf" +.Fn statvfs "const char * restrict path" "struct statvfs * restrict buf" .Ft int .Fn fstatvfs "int fd" "struct statvfs *buf" .Sh DESCRIPTION diff --git a/lib/libc/gen/statvfs.c b/lib/libc/gen/statvfs.c index 51727f18bf5f..fe9462bd307b 100644 --- a/lib/libc/gen/statvfs.c +++ b/lib/libc/gen/statvfs.c @@ -70,7 +70,7 @@ fstatvfs(int fd, struct statvfs *result) } int -statvfs(const char *__restrict path, struct statvfs *__restrict result) +statvfs(const char * __restrict path, struct statvfs * __restrict result) { struct statfs sfs; int rv; |
