aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/bits
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-06-24 17:13:45 +0000
committerUlrich Drepper <drepper@redhat.com>2003-06-24 17:13:45 +0000
commitcd18a5f14aab2ccffc304d8149c9dae5028b465f (patch)
tree9d03ff14c4f14c67f2784e86491de675b673c8e9 /sysdeps/unix/sysv/linux/bits
parent9638f69f6c02c4352e3ea7e314574ca7992e8e35 (diff)
downloadglibc-cd18a5f14aab2ccffc304d8149c9dae5028b465f.tar
glibc-cd18a5f14aab2ccffc304d8149c9dae5028b465f.tar.gz
glibc-cd18a5f14aab2ccffc304d8149c9dae5028b465f.tar.bz2
glibc-cd18a5f14aab2ccffc304d8149c9dae5028b465f.zip
(struct statfs): Add f_frsize field. (struct statfs64): Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/bits')
-rw-r--r--sysdeps/unix/sysv/linux/bits/statfs.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/statfs.h b/sysdeps/unix/sysv/linux/bits/statfs.h
index 367e59d6df..d2b7ac32dd 100644
--- a/sysdeps/unix/sysv/linux/bits/statfs.h
+++ b/sysdeps/unix/sysv/linux/bits/statfs.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998, 2000, 2002 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 2000, 2002, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -41,7 +41,8 @@ struct statfs
#endif
__fsid_t f_fsid;
__SWORD_TYPE f_namelen;
- __SWORD_TYPE f_spare[6];
+ __SWORD_TYPE f_frsize;
+ __SWORD_TYPE f_spare[5];
};
#ifdef __USE_LARGEFILE64
@@ -56,7 +57,8 @@ struct statfs64
__fsfilcnt64_t f_ffree;
__fsid_t f_fsid;
__SWORD_TYPE f_namelen;
- __SWORD_TYPE f_spare[6];
+ __SWORD_TYPE f_frsize;
+ __SWORD_TYPE f_spare[5];
};
#endif