diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-22 09:13:18 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-22 09:13:18 +0000 |
commit | 32b3cf08c33ce13099612a2fa015ff215de6fc24 (patch) | |
tree | 44e1e954fe4edde882df781eb87db1b1bf21eb01 /perl.h | |
parent | 9b9c89a36bf92fa7d67f5bb3396c5e16656e77ae (diff) | |
download | perl-32b3cf08c33ce13099612a2fa015ff215de6fc24.tar.gz |
nosuid getmntent() branch.
p4raw-id: //depot/cfgperl@2679
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -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 */ |