diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-25 13:04:05 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-25 13:04:05 +0000 |
commit | b4143709718f3326449f9860bdc08597c59bb826 (patch) | |
tree | 76d54deb5c9cdf15a3e16a6aab55c2614f549630 /libc/misc/statfs | |
parent | e64b6392143f7ee01b3ea867bf61647ef4e1d727 (diff) |
- add missing hidden_def
Diffstat (limited to 'libc/misc/statfs')
-rw-r--r-- | libc/misc/statfs/statvfs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/misc/statfs/statvfs.c b/libc/misc/statfs/statvfs.c index 0feb8731d..5085a2a9e 100644 --- a/libc/misc/statfs/statvfs.c +++ b/libc/misc/statfs/statvfs.c @@ -38,6 +38,7 @@ extern __typeof(statfs) __libc_statfs; libc_hidden_proto(__libc_statfs) libc_hidden_proto(stat) +libc_hidden_proto(statvfs) int statvfs (const char *file, struct statvfs *buf) { struct statfs fsbuf; @@ -53,3 +54,4 @@ int statvfs (const char *file, struct statvfs *buf) /* We signal success if the statfs call succeeded. */ return 0; } +libc_hidden_def(statvfs) |