From 36880b3e34dbc7fc948c76d7f39fdebd0f600167 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Wed, 5 Mar 2025 09:13:41 +0000 Subject: frameworks/native: Include stdint.h for int32_t type This commit fixes the following compiler error with gcc 14.2.0. native/include/android/configuration.h:531:1: error: 'int32_t' does not name a type 531 | int32_t AConfiguration_getMcc(AConfiguration* config); | ^~~~~~~ native/include/android/configuration.h:536:52: error: 'int32_t' has not been declared 536 | void AConfiguration_setMcc(AConfiguration* config, int32_t mcc); | ^~~~~~~ Change-Id: I11fd658d799801fb6267ab48d4a890cab2086121 --- include/android/configuration.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/android/configuration.h b/include/android/configuration.h index 46c7dfeceb..a291db0ecd 100644 --- a/include/android/configuration.h +++ b/include/android/configuration.h @@ -26,6 +26,7 @@ #ifndef ANDROID_CONFIGURATION_H #define ANDROID_CONFIGURATION_H +#include #include #include -- cgit v1.2.3-59-g8ed1b