Include <stdint.h> in NDK font headers
Both `font.h` and `font_matcher.h` use `uint16_t` and `uint32_t`.
These come from `stdint.h` which should be explicitly included.
Change-Id: I08d96d9d7a1e661a467a70969182bcbe6d47b4fc
diff --git a/include/android/font_matcher.h b/include/android/font_matcher.h
index 4417422..63b0328 100644
--- a/include/android/font_matcher.h
+++ b/include/android/font_matcher.h
@@ -75,6 +75,7 @@
#include <stdbool.h>
#include <stddef.h>
+#include <stdint.h>
#include <sys/cdefs.h>
#include <android/font.h>