]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix includes. Define STAT.
authorUlrich Drepper <drepper@redhat.com>
Tue, 18 Jan 2000 10:25:58 +0000 (10:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 18 Jan 2000 10:25:58 +0000 (10:25 +0000)
sysdeps/unix/sysv/linux/statvfs.c

index 9bbe6c2f99de1818ebcf1acfa3ee34eb83b0e977..7f85c9b72604f9a7f3a948bf8bb8db7e5c2048fa 100644 (file)
    Boston, MA 02111-1307, USA.  */
 
 #include <errno.h>
-#include <fcntl.h>
-#include <unistd.h>
+#include <mntent.h>
+#include <paths.h>
+#include <string.h>
+#include <sys/mount.h>
+#include <sys/stat.h>
+#include <sys/statfs.h>
 #include <sys/statvfs.h>
 
 
@@ -30,11 +34,12 @@ statvfs (const char *file, struct statvfs *buf)
   struct stat st;
 
   /* Get as much information as possible from the system.  */
-  if (__statfs (fd, &fsbuf) < 0)
+  if (__statfs (file, &fsbuf) < 0)
     return -1;
 
+#define STAT(st) stat (file, st)
 #include "internal_statvfs.c"
-  
+
   /* We signal success if the statfs call succeeded.  */
   return 0;
 }