diff options
author | Chih-Wei Huang <cwhuang@android-x86.org> | 2015-10-30 11:49:42 +0800 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2015-12-01 16:48:17 +0000 |
commit | 42f2f92059dca568e896aee93126b8bef2a332a1 (patch) | |
tree | 7e6f6ea328c316e9638a1cbbc69a849765bac18e /intel | |
parent | c05049b4205e446a2e319ab620a5ca949c7a7380 (diff) | |
download | libdrm-42f2f92059dca568e896aee93126b8bef2a332a1.tar.gz libdrm-42f2f92059dca568e896aee93126b8bef2a332a1.tar.bz2 libdrm-42f2f92059dca568e896aee93126b8bef2a332a1.zip |
intel: add the missing <strings.h> include
It defines the prototype of ffs that fixes the building error
on Android 6.0 64-bit image.
Signed-off-by: Chih-Wei Huang <cwhuang@linux.org.tw>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'intel')
-rw-r--r-- | intel/intel_bufmgr_fake.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/intel/intel_bufmgr_fake.c b/intel/intel_bufmgr_fake.c index 551e05de..7f4c7b9f 100644 --- a/intel/intel_bufmgr_fake.c +++ b/intel/intel_bufmgr_fake.c @@ -42,6 +42,7 @@ #include <string.h> #include <assert.h> #include <errno.h> +#include <strings.h> #include <xf86drm.h> #include <pthread.h> #include "intel_bufmgr.h" |