mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-23 22:42:37 +01:00
monitor: add missing sys/stat.h include
Fixes: CC monitor/pcap.o monitor/pcap.c: In function ‘pcap_create’: monitor/pcap.c:121:6: error: ‘S_IRUSR’ undeclared (first use in this function) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); ^ monitor/pcap.c:121:6: note: each undeclared identifier is reported only once for each function it appears in monitor/pcap.c:121:16: error: ‘S_IWUSR’ undeclared (first use in this function) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); ^ monitor/pcap.c:121:26: error: ‘S_IRGRP’ undeclared (first use in this function) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); ^ monitor/pcap.c:121:36: error: ‘S_IROTH’ undeclared (first use in this function) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); ^
This commit is contained in:
parent
6c3110551a
commit
330a930b01
@ -29,6 +29,7 @@
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/uio.h>
|
||||
#include <sys/types.h>
|
||||
#include <ell/ell.h>
|
||||
|
Loading…
Reference in New Issue
Block a user