diff options
author | Dennis Gilmore <dennis@ausil.us> | 2015-12-27 22:55:17 +0000 |
---|---|---|
committer | Russell King <rmk@arm.linux.org.uk> | 2015-12-27 23:19:35 +0000 |
commit | 7a243ec9018d48df4e374f5000b05f3981deebf9 (patch) | |
tree | 69554f27d792835fdc38d52ba7adc26a3b1d2bcc | |
parent | c84e9921e4f47507b0be85ab976e57d342d8ddab (diff) |
src: add missing sys/stat.h import
Fix build error in src/common_drm.c caused by missing sys/stat.h
include:
common_drm.c:1002:14: error: storage size of 'st' isn't known
Signed-off-by: Dennis Gilmore <dennis@ausil.us>
Signed-off-by: Russell King <rmk@arm.linux.org.uk> [edited commit message]
-rw-r--r-- | src/common_drm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common_drm.c b/src/common_drm.c index e2468eb..b5c7f0b 100644 --- a/src/common_drm.c +++ b/src/common_drm.c @@ -11,6 +11,7 @@ #include <errno.h> #include <stdint.h> #include <stdlib.h> +#include <sys/stat.h> #include <xf86drm.h> #include <xf86drmMode.h> |