diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2014-07-15 19:22:55 +0200 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2014-07-16 12:16:08 +0900 |
commit | c0b34dca2632a774249cfa3b969c3f7ce9df33e1 (patch) | |
tree | 4d4066c9d72953bf29576542ad85b81a349b3b55 /tests/radeon | |
parent | 72f84b85afbe762b86ea8c095fee01e7d406b131 (diff) |
radeon: Add missing header includes.
unistd.h for close() and xf86drm.h for drmOpen().
Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
Diffstat (limited to 'tests/radeon')
-rw-r--r-- | tests/radeon/radeon_ttm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/radeon/radeon_ttm.c b/tests/radeon/radeon_ttm.c index 246fd993..ac3297aa 100644 --- a/tests/radeon/radeon_ttm.c +++ b/tests/radeon/radeon_ttm.c @@ -25,7 +25,9 @@ */ #include <stdio.h> #include <stdlib.h> +#include <unistd.h> #include "rbo.h" +#include "xf86drm.h" /* allocate as many single page bo to try to starve the kernel * memory zone (below highmem) |