diff options
author | Thomas Koeller <thomas@koeller.dyndns.org> | 2008-07-08 00:12:02 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2008-07-10 00:08:32 +0200 |
commit | 629e57e0d49a768f8c1e02645d81919aeace78e7 (patch) | |
tree | d093be1bd095ccf40abeb2c5b0ee53385a7f867b /extras/scsi_id | |
parent | 3c35425071caa4379ebeeed2680f35829bbfd9a8 (diff) |
scsi_id: include sys/stat.h
I could not build scsi_id because of a missing #include
for sys/stat.h, so I had to add that.
Signed-off-by: Thomas Koeller <thomas@koeller.dyndns.org>
Diffstat (limited to 'extras/scsi_id')
-rw-r--r-- | extras/scsi_id/scsi_serial.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extras/scsi_id/scsi_serial.c b/extras/scsi_id/scsi_serial.c index 7f756954e2..8f160306bd 100644 --- a/extras/scsi_id/scsi_serial.c +++ b/extras/scsi_id/scsi_serial.c @@ -15,6 +15,7 @@ #include <sys/types.h> #include <sys/ioctl.h> +#include <sys/stat.h> #include <stdio.h> #include <errno.h> #include <string.h> |