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 /xwayland | |
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 'xwayland')
-rw-r--r-- | xwayland/dnd.c | 1 | ||||
-rw-r--r-- | xwayland/hash.h | 2 | ||||
-rw-r--r-- | xwayland/launcher.c | 1 | ||||
-rw-r--r-- | xwayland/selection.c | 1 | ||||
-rw-r--r-- | xwayland/window-manager.c | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/xwayland/dnd.c b/xwayland/dnd.c index f17e4cd0..61edb119 100644 --- a/xwayland/dnd.c +++ b/xwayland/dnd.c @@ -26,6 +26,7 @@ #include "config.h" #include <stdlib.h> +#include <stdint.h> #include <stdio.h> #include <string.h> #include <sys/socket.h> diff --git a/xwayland/hash.h b/xwayland/hash.h index 6e1674e1..334d8f47 100644 --- a/xwayland/hash.h +++ b/xwayland/hash.h @@ -35,6 +35,8 @@ #ifndef HASH_H #define HASH_H +#include <stdint.h> + struct hash_table; struct hash_table *hash_table_create(void); typedef void (*hash_table_iterator_func_t)(void *element, void *data); diff --git a/xwayland/launcher.c b/xwayland/launcher.c index b7aee3b4..15443cd1 100644 --- a/xwayland/launcher.c +++ b/xwayland/launcher.c @@ -26,6 +26,7 @@ #include "config.h" #include <stdlib.h> +#include <stdint.h> #include <stdio.h> #include <string.h> #include <sys/socket.h> diff --git a/xwayland/selection.c b/xwayland/selection.c index bd5e28a9..641ac490 100644 --- a/xwayland/selection.c +++ b/xwayland/selection.c @@ -25,6 +25,7 @@ #include "config.h" +#include <stdint.h> #include <stdlib.h> #include <string.h> #include <unistd.h> diff --git a/xwayland/window-manager.c b/xwayland/window-manager.c index 49d974e2..5f86d8a0 100644 --- a/xwayland/window-manager.c +++ b/xwayland/window-manager.c @@ -26,6 +26,7 @@ #include "config.h" #include <stdlib.h> +#include <stdint.h> #include <stdio.h> #include <string.h> #include <sys/socket.h> |