summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/drmtest.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/drmtest.c b/lib/drmtest.c
index 44fd30ee..75f49cd7 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -26,7 +26,11 @@
*
*/
+#ifndef ANDROID
#define _GNU_SOURCE
+#else
+#include <libgen.h>
+#endif
#include <stdio.h>
#include <fcntl.h>
#include <sys/stat.h>
@@ -1007,7 +1011,7 @@ static bool run_under_gdb(void)
sprintf(buf, "/proc/%d/exe", getppid());
return (readlink (buf, buf, sizeof (buf)) != -1 &&
- strncmp (basename (buf), "gdb", 3) == 0);
+ strncmp(basename(buf), "gdb", 3) == 0);
}
void __igt_fail_assert(int exitcode, const char *file,