瀏覽代碼

- add missing hidden_def

Bernhard Reutner-Fischer 16 年之前
父節點
當前提交
b414370971
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      libc/misc/statfs/statvfs.c

+ 2 - 0
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)