eatmntopt
flags |= eatmntopt(mnt, MNTOPT_RO) ? MS_RDONLY : 0;
flags |= eatmntopt(mnt, MNTOPT_REMOUNT) ? MS_REMOUNT : 0;
flags |= eatmntopt(mnt, MNTOPT_GLOBAL) ? MS_GLOBAL : 0;
if (eatmntopt(mnt, MNTOPT_NOINTR))
if (eatmntopt(mnt, MNTOPT_INTR))
if (eatmntopt(mnt, MNTOPT_SYNCDIR))
if (eatmntopt(mnt, MNTOPT_FORCEDIRECTIO)) {
if (eatmntopt(mnt, MNTOPT_NOFORCEDIRECTIO)) {
if (eatmntopt(mnt, MNTOPT_NOSETSEC))
if (eatmntopt(mnt, MNTOPT_LARGEFILES))
if (eatmntopt(mnt, MNTOPT_NOLARGEFILES))
(void) eatmntopt(mnt, MNTOPT_LOGGING);
if (eatmntopt(mnt, MNTOPT_NOLOGGING))
if (eatmntopt(mnt, MNTOPT_NOATIME))
if (eatmntopt(mnt, MNTOPT_DFRATIME))
if (eatmntopt(mnt, MNTOPT_NODFRATIME))
static int eatmntopt(struct mnttab *, char *);