diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-23 14:42:02 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-23 14:42:02 +0000 |
commit | ba9a21b2fa45a29a9e3dff6e0b199d8da5059811 (patch) | |
tree | 3185ae6223c0143df31281f9584cce9a93cd0440 /libc/misc/statfs/internal_statvfs.c | |
parent | 1129cd16b42185f258fbe8d53a0fb11f1d530f42 (diff) |
Get rid of nested warnings
Diffstat (limited to 'libc/misc/statfs/internal_statvfs.c')
-rw-r--r-- | libc/misc/statfs/internal_statvfs.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libc/misc/statfs/internal_statvfs.c b/libc/misc/statfs/internal_statvfs.c index 2d561976e..27dad0890 100644 --- a/libc/misc/statfs/internal_statvfs.c +++ b/libc/misc/statfs/internal_statvfs.c @@ -17,13 +17,6 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -libc_hidden_proto(memset) -libc_hidden_proto(strcmp) -libc_hidden_proto(strsep) -libc_hidden_proto(setmntent) -libc_hidden_proto(getmntent_r) -libc_hidden_proto(endmntent) - /* Now fill in the fields we have information for. */ buf->f_bsize = fsbuf.f_bsize; /* Linux does not support f_frsize, so set it to the full block size. */ @@ -90,6 +83,7 @@ libc_hidden_proto(endmntent) buf->f_flag |= ST_RDONLY; else if (strcmp (opt, "nosuid") == 0) buf->f_flag |= ST_NOSUID; +#ifdef _GNU_SOURCE else if (strcmp (opt, "noexec") == 0) buf->f_flag |= ST_NOEXEC; else if (strcmp (opt, "nodev") == 0) @@ -102,6 +96,7 @@ libc_hidden_proto(endmntent) buf->f_flag |= ST_NOATIME; else if (strcmp (opt, "nodiratime") == 0) buf->f_flag |= ST_NODIRATIME; +#endif /* We can stop looking for more entries. */ break; |