diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-07-19 14:16:27 +0300 |
---|---|---|
committer | Bryce Harrington <bryce@osg.samsung.com> | 2016-07-26 16:26:08 -0700 |
commit | 649bbce607fb9665114dd27d64c5273b6a2c42f5 (patch) | |
tree | 1326671d00adab855e60f018eafbe5ac5a43762f /ivi-shell | |
parent | a4b34976dd52e2085f62cc03c3f27e1acc41c1f9 (diff) |
include stdint.h for int32_t/uint32_t
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Reviewed-by: Yong Bakos <ybakos@humanoriented.com>
Diffstat (limited to 'ivi-shell')
-rw-r--r-- | ivi-shell/hmi-controller.c | 1 | ||||
-rw-r--r-- | ivi-shell/input-panel-ivi.c | 1 | ||||
-rw-r--r-- | ivi-shell/ivi-layout-export.h | 2 | ||||
-rw-r--r-- | ivi-shell/ivi-layout-private.h | 2 | ||||
-rw-r--r-- | ivi-shell/ivi-layout-transition.c | 1 | ||||
-rw-r--r-- | ivi-shell/ivi-layout.c | 1 | ||||
-rw-r--r-- | ivi-shell/ivi-shell.c | 1 | ||||
-rw-r--r-- | ivi-shell/ivi-shell.h | 1 |
8 files changed, 10 insertions, 0 deletions
diff --git a/ivi-shell/hmi-controller.c b/ivi-shell/hmi-controller.c index 0c28e817..f3a88308 100644 --- a/ivi-shell/hmi-controller.c +++ b/ivi-shell/hmi-controller.c @@ -52,6 +52,7 @@ #include <sys/wait.h> #include <unistd.h> #include <stdlib.h> +#include <stdint.h> #include <stdio.h> #include <string.h> #include <linux/input.h> diff --git a/ivi-shell/input-panel-ivi.c b/ivi-shell/input-panel-ivi.c index 954d4ef8..4c71cc76 100644 --- a/ivi-shell/input-panel-ivi.c +++ b/ivi-shell/input-panel-ivi.c @@ -28,6 +28,7 @@ #include "config.h" #include <stdlib.h> +#include <stdint.h> #include <stdio.h> #include <string.h> diff --git a/ivi-shell/ivi-layout-export.h b/ivi-shell/ivi-layout-export.h index e437d9ea..c909de2c 100644 --- a/ivi-shell/ivi-layout-export.h +++ b/ivi-shell/ivi-layout-export.h @@ -55,6 +55,8 @@ extern "C" { #endif /* __cplusplus */ +#include <stdint.h> + #include "stdbool.h" #include "compositor.h" diff --git a/ivi-shell/ivi-layout-private.h b/ivi-shell/ivi-layout-private.h index 66b19f64..b6f08894 100644 --- a/ivi-shell/ivi-layout-private.h +++ b/ivi-shell/ivi-layout-private.h @@ -26,6 +26,8 @@ #ifndef _ivi_layout_PRIVATE_H_ #define _ivi_layout_PRIVATE_H_ +#include <stdint.h> + #include "compositor.h" #include "ivi-layout-export.h" diff --git a/ivi-shell/ivi-layout-transition.c b/ivi-shell/ivi-layout-transition.c index 4913db45..bf0640ee 100644 --- a/ivi-shell/ivi-layout-transition.c +++ b/ivi-shell/ivi-layout-transition.c @@ -28,6 +28,7 @@ #include <time.h> #include <assert.h> #include <stdlib.h> +#include <stdint.h> #include <stdio.h> #include <stdbool.h> diff --git a/ivi-shell/ivi-layout.c b/ivi-shell/ivi-layout.c index dec49363..7c2f32d8 100644 --- a/ivi-shell/ivi-layout.c +++ b/ivi-shell/ivi-layout.c @@ -59,6 +59,7 @@ #include <string.h> #include <assert.h> +#include <stdint.h> #include "compositor/weston.h" #include "compositor.h" diff --git a/ivi-shell/ivi-shell.c b/ivi-shell/ivi-shell.c index 090ee4d1..c996b8f8 100644 --- a/ivi-shell/ivi-shell.c +++ b/ivi-shell/ivi-shell.c @@ -35,6 +35,7 @@ */ #include "config.h" +#include <stdint.h> #include <string.h> #include <dlfcn.h> #include <limits.h> diff --git a/ivi-shell/ivi-shell.h b/ivi-shell/ivi-shell.h index 369e5f80..e35f75f2 100644 --- a/ivi-shell/ivi-shell.h +++ b/ivi-shell/ivi-shell.h @@ -27,6 +27,7 @@ #define WESTON_IVI_SHELL_H #include <stdbool.h> +#include <stdint.h> #include "compositor.h" |