diff options
author | Emil Velikov <[email protected]> | 2015-03-11 19:12:35 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-03-16 20:48:07 +0000 |
commit | 771cd266b9d00bdcf2cf7acaa3c8363c358d7478 (patch) | |
tree | 080af65f7714f3c1d591dd21c7c7660e696fbe05 /src | |
parent | aead7fe2e2b6c89258f80a25299f4ec0fece2d95 (diff) |
loader: include <sys/stat.h> for non-sysfs builds
Required by fstat(), otherwise we'll error out due to implicit function
declaration.
Cc: "10.4 10.5" <[email protected]>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89530
Signed-off-by: Emil Velikov <[email protected]>
Reported-by: Vadim Rutkovsky <[email protected]>
Tested-by: Vadim Rutkovsky <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/loader/loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/loader/loader.c b/src/loader/loader.c index 9ff5115221f..17bf1336005 100644 --- a/src/loader/loader.c +++ b/src/loader/loader.c @@ -64,6 +64,7 @@ * Rob Clark <[email protected]> */ +#include <sys/stat.h> #include <stdarg.h> #include <stdio.h> #include <string.h> @@ -80,7 +81,6 @@ #endif #endif #ifdef HAVE_SYSFS -#include <sys/stat.h> #include <sys/types.h> #endif #include "loader.h" |