Message ID | 1424699862-4077-4-git-send-email-emil.l.velikov@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/tests/auth.c b/tests/auth.c index 9b6fca9..9147b11 100644 --- a/tests/auth.c +++ b/tests/auth.c @@ -26,6 +26,7 @@ */ #include <limits.h> +#include <sys/ioctl.h> #include "drmtest.h" enum auth_event { diff --git a/tests/getclient.c b/tests/getclient.c index 349c16e..481ce11 100644 --- a/tests/getclient.c +++ b/tests/getclient.c @@ -26,6 +26,7 @@ */ #include <limits.h> +#include <sys/ioctl.h> #include "drmtest.h" /** diff --git a/tests/getstats.c b/tests/getstats.c index bd55b12..8d40d0b 100644 --- a/tests/getstats.c +++ b/tests/getstats.c @@ -26,6 +26,7 @@ */ #include <limits.h> +#include <sys/ioctl.h> #include "drmtest.h" /** diff --git a/tests/lock.c b/tests/lock.c index 86caa28..365681b 100644 --- a/tests/lock.c +++ b/tests/lock.c @@ -30,6 +30,7 @@ */ #include <limits.h> +#include <sys/ioctl.h> #include "drmtest.h" enum auth_event { diff --git a/tests/name_from_fd.c b/tests/name_from_fd.c index 330c8ff..e3db413 100644 --- a/tests/name_from_fd.c +++ b/tests/name_from_fd.c @@ -28,6 +28,7 @@ #include <unistd.h> #include <fcntl.h> #include <limits.h> +#include <string.h> #include "drmtest.h" /** diff --git a/tests/setversion.c b/tests/setversion.c index 5a5d01c..2f7b529 100644 --- a/tests/setversion.c +++ b/tests/setversion.c @@ -27,6 +27,7 @@ #include <limits.h> #include <string.h> +#include <sys/ioctl.h> #include "drmtest.h" /** diff --git a/tests/updatedraw.c b/tests/updatedraw.c index a61eb15..8e0b94b 100644 --- a/tests/updatedraw.c +++ b/tests/updatedraw.c @@ -25,6 +25,7 @@ * */ +#include <sys/ioctl.h> #include "drmtest.h" static void
ioctl() and strcmp() were used without the relevent header being included. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> --- tests/auth.c | 1 + tests/getclient.c | 1 + tests/getstats.c | 1 + tests/lock.c | 1 + tests/name_from_fd.c | 1 + tests/setversion.c | 1 + tests/updatedraw.c | 1 + 7 files changed, 7 insertions(+)