OSDN Git Service

- add missing hidden_def
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 25 Sep 2008 13:04:05 +0000 (13:04 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 25 Sep 2008 13:04:05 +0000 (13:04 -0000)
libc/misc/statfs/statvfs.c

index 0feb873..5085a2a 100644 (file)
@@ -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)