summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-01-22 09:13:18 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-01-22 09:13:18 +0000
commit32b3cf08c33ce13099612a2fa015ff215de6fc24 (patch)
tree44e1e954fe4edde882df781eb87db1b1bf21eb01 /perl.h
parent9b9c89a36bf92fa7d67f5bb3396c5e16656e77ae (diff)
downloadperl-32b3cf08c33ce13099612a2fa015ff215de6fc24.tar.gz
nosuid getmntent() branch.
p4raw-id: //depot/cfgperl@2679
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/perl.h b/perl.h
index 9dd71e5a00..c7e328a2a3 100644
--- a/perl.h
+++ b/perl.h
@@ -2783,15 +2783,13 @@ typedef struct am_table_short AMTS;
#ifdef IAMSUID
#ifdef I_SYS_STATVFS
-# include <sys/statvfs.h>
-#else
-# ifdef I_SYS_MOUNT
-# include <sys/mount.h>
-# else
-# ifdef I_MNTENT
-# include <mntent.h>
-# endif
-# endif
+# include <sys/statvfs.h> /* for f?statvfs() */
+#endif
+#ifdef I_SYS_MOUNT
+# include <sys/mount.h> /* for *BSD f?statfs() */
+#endif
+#ifdef I_MNTENT
+# include <mntent.h> /* for getmntent() */
#endif
#endif /* IAMSUID */