Add missing header observed after linux-legacy was reverted.

Interestingly this has only been a problem on a clean RHEL6
install so I suspect the include was removed from one of the
standard system include headers.  We should be including it
explicitly anyway since it's used in both of these .c files.
This commit is contained in:
Brian Behlendorf 2010-05-20 10:04:10 -07:00
parent ac21bd7c44
commit b50494ba2d
2 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,7 @@
#include <strings.h>
#include <unistd.h>
#include <zone.h>
#include <sys/stat.h>
#include <sys/efi_partition.h>
#include <sys/vtoc.h>
#include <sys/zfs_ioctl.h>

View File

@ -37,6 +37,7 @@
#include <unistd.h>
#include <ctype.h>
#include <math.h>
#include <sys/stat.h>
#include <sys/mnttab.h>
#include <sys/mntent.h>
#include <sys/types.h>