include stdint.h for int32_t/uint32_t

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Reviewed-by: Yong Bakos <ybakos@humanoriented.com>
dev
Jussi Kukkonen 8 years ago committed by Bryce Harrington
parent a4b34976dd
commit 649bbce607
  1. 1
      clients/editor.c
  2. 1
      clients/eventdemo.c
  3. 1
      clients/ivi-shell-user-interface.c
  4. 1
      clients/keyboard.c
  5. 1
      clients/multi-resource.c
  6. 1
      clients/nested-client.c
  7. 1
      clients/presentation-shm.c
  8. 1
      clients/scaler.c
  9. 1
      clients/simple-damage.c
  10. 1
      clients/simple-dmabuf-intel.c
  11. 1
      clients/simple-dmabuf-v4l.c
  12. 1
      clients/simple-egl.c
  13. 1
      clients/simple-shm.c
  14. 1
      clients/simple-touch.c
  15. 1
      clients/stacking.c
  16. 1
      clients/weston-info.c
  17. 1
      clients/weston-simple-im.c
  18. 1
      clients/window.h
  19. 1
      compositor/cms-colord.c
  20. 1
      compositor/cms-helper.c
  21. 1
      compositor/main.c
  22. 1
      compositor/screen-share.c
  23. 1
      compositor/text-backend.c
  24. 1
      compositor/weston-screenshooter.c
  25. 1
      desktop-shell/exposay.c
  26. 1
      desktop-shell/input-panel.c
  27. 1
      desktop-shell/shell.c
  28. 1
      desktop-shell/shell.h
  29. 1
      fullscreen-shell/fullscreen-shell.c
  30. 1
      ivi-shell/hmi-controller.c
  31. 1
      ivi-shell/input-panel-ivi.c
  32. 2
      ivi-shell/ivi-layout-export.h
  33. 2
      ivi-shell/ivi-layout-private.h
  34. 1
      ivi-shell/ivi-layout-transition.c
  35. 1
      ivi-shell/ivi-layout.c
  36. 1
      ivi-shell/ivi-shell.c
  37. 1
      ivi-shell/ivi-shell.h
  38. 1
      libweston/animation.c
  39. 1
      libweston/bindings.c
  40. 1
      libweston/clipboard.c
  41. 1
      libweston/compositor-drm.c
  42. 1
      libweston/compositor-fbdev.c
  43. 2
      libweston/compositor-fbdev.h
  44. 1
      libweston/compositor-headless.c
  45. 2
      libweston/compositor-headless.h
  46. 1
      libweston/compositor-rdp.c
  47. 1
      libweston/compositor-wayland.c
  48. 2
      libweston/compositor-wayland.h
  49. 1
      libweston/compositor-x11.c
  50. 2
      libweston/compositor-x11.h
  51. 1
      libweston/compositor.h
  52. 1
      libweston/data-device.c
  53. 1
      libweston/dbus.c
  54. 1
      libweston/gl-renderer.c
  55. 2
      libweston/gl-renderer.h
  56. 1
      libweston/launcher-logind.c
  57. 1
      libweston/launcher-util.c
  58. 1
      libweston/launcher-weston-launch.c
  59. 1
      libweston/libbacklight.c
  60. 1
      libweston/libinput-device.c
  61. 1
      libweston/libinput-seat.c
  62. 1
      libweston/linux-dmabuf.c
  63. 1
      libweston/noop-renderer.c
  64. 1
      libweston/pixman-renderer.c
  65. 1
      libweston/screenshooter.c
  66. 2
      libweston/spring-tool.c
  67. 1
      libweston/zoom.c
  68. 1
      shared/config-parser.c
  69. 2
      shared/config-parser.h
  70. 1
      shared/frame.c
  71. 1
      shared/image-loader.c
  72. 1
      shared/xalloc.c
  73. 1
      shared/xalloc.h
  74. 1
      tests/buffer-count-test.c
  75. 1
      tests/internal-screenshot-test.c
  76. 1
      tests/ivi_layout-internal-test.c
  77. 1
      tests/ivi_layout-test-plugin.c
  78. 1
      tests/ivi_layout-test.c
  79. 2
      tests/keyboard-test.c
  80. 1
      tests/presentation-test.c
  81. 1
      tests/surface-global-test.c
  82. 1
      tests/surface-screenshot.c
  83. 1
      tests/text-test.c
  84. 1
      tests/weston-test-client-helper.c
  85. 1
      tests/weston-test-client-helper.h
  86. 1
      tests/weston-test.c
  87. 2
      wcap/wcap-decode.h
  88. 1
      xwayland/dnd.c
  89. 2
      xwayland/hash.h
  90. 1
      xwayland/launcher.c
  91. 1
      xwayland/selection.c
  92. 1
      xwayland/window-manager.c

@ -25,6 +25,7 @@
#include "config.h"
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -33,6 +33,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

@ -26,6 +26,7 @@
#include <sys/wait.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <linux/input.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -24,6 +24,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>

@ -23,6 +23,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -24,6 +24,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -24,6 +24,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -22,6 +22,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -23,6 +23,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -24,6 +24,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -24,6 +24,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -24,6 +24,7 @@
#include "config.h"
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -25,6 +25,7 @@
#include <errno.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -23,6 +23,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <stdint.h>
#include <xkbcommon/xkbcommon.h>
#include <wayland-client.h>
#include <cairo.h>

@ -27,6 +27,7 @@
#include <fcntl.h>
#include <unistd.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -27,6 +27,7 @@
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#ifdef HAVE_LCMS

@ -33,6 +33,7 @@
#include <signal.h>
#include <errno.h>
#include <dlfcn.h>
#include <stdint.h>
#include <string.h>
#include <sys/utsname.h>
#include <sys/stat.h>

@ -27,6 +27,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

@ -28,6 +28,7 @@
#include <stdbool.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include <time.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <linux/input.h>
#include "compositor.h"

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <linux/input.h>
#include "shell.h"

@ -26,6 +26,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

@ -24,6 +24,7 @@
*/
#include <stdbool.h>
#include <stdint.h>
#include <time.h>
#include "compositor.h"

@ -28,6 +28,7 @@
#include <sys/wait.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>

@ -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>

@ -28,6 +28,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>

@ -55,6 +55,8 @@
extern "C" {
#endif /* __cplusplus */
#include <stdint.h>
#include "stdbool.h"
#include "compositor.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"

@ -28,6 +28,7 @@
#include <time.h>
#include <assert.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <stdbool.h>

@ -59,6 +59,7 @@
#include <string.h>
#include <assert.h>
#include <stdint.h>
#include "compositor/weston.h"
#include "compositor.h"

@ -35,6 +35,7 @@
*/
#include "config.h"
#include <stdint.h>
#include <string.h>
#include <dlfcn.h>
#include <limits.h>

@ -27,6 +27,7 @@
#define WESTON_IVI_SHELL_H
#include <stdbool.h>
#include <stdint.h>
#include "compositor.h"

@ -27,6 +27,7 @@
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include <math.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <linux/input.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <linux/input.h>

@ -27,6 +27,7 @@
#include "config.h"
#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>

@ -30,6 +30,7 @@
#include <errno.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <math.h>

@ -30,6 +30,8 @@
extern "C" {
#endif
#include <stdint.h>
#include "compositor.h"
#define WESTON_FBDEV_BACKEND_CONFIG_VERSION 1

@ -26,6 +26,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>

@ -30,6 +30,8 @@
extern "C" {
#endif
#include <stdint.h>
#include "compositor.h"
#define WESTON_HEADLESS_BACKEND_CONFIG_VERSION 1

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

@ -27,6 +27,7 @@
#include "config.h"
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -32,6 +32,8 @@
extern "C" {
#endif
#include <stdint.h>
#define WESTON_WAYLAND_BACKEND_CONFIG_VERSION 1
struct weston_wayland_backend_output_config {

@ -29,6 +29,7 @@
#include <assert.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>

@ -30,6 +30,8 @@
extern "C" {
#endif
#include <stdint.h>
#include "compositor.h"
#define WESTON_X11_BACKEND_CONFIG_VERSION 1

@ -32,6 +32,7 @@ extern "C" {
#endif
#include <stdbool.h>
#include <stdint.h>
#include <time.h>
#include <pixman.h>
#include <xkbcommon/xkbcommon.h>

@ -28,6 +28,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdint.h>
#include <stdio.h>
#include <assert.h>

@ -35,6 +35,7 @@
#include <errno.h>
#include <fcntl.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/epoll.h>

@ -30,6 +30,7 @@
#include <GLES2/gl2ext.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

@ -25,6 +25,8 @@
#include "config.h"
#include <stdint.h>
#include "compositor.h"
#ifdef ENABLE_EGL

@ -30,6 +30,7 @@
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -31,6 +31,7 @@
#include "launcher-util.h"
#include "launcher-impl.h"
#include <stdint.h>
#include <unistd.h>
#include <linux/input.h>

@ -23,6 +23,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -32,6 +32,7 @@
#include "config.h"
#include "libbacklight.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

@ -27,6 +27,7 @@
#include "config.h"
#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <linux/input.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

@ -23,6 +23,7 @@
#include "config.h"
#include <assert.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/types.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include "compositor.h"

@ -28,6 +28,7 @@
#include "config.h"
#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
#include <assert.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <linux/input.h>

@ -23,6 +23,8 @@
* SOFTWARE.
*/
#include <stdint.h>
#include "config.h"
#include "compositor.h"

@ -26,6 +26,7 @@
#include "config.h"
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

@ -30,6 +30,8 @@
extern "C" {
#endif
#include <stdint.h>
#define WESTON_CONFIG_FILE_ENV_VAR "WESTON_CONFIG_FILE"
enum config_key_type {

@ -27,6 +27,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <wayland-util.h>

@ -28,6 +28,7 @@
#include <errno.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <png.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <errno.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

@ -30,6 +30,7 @@
extern "C" {
#endif
#include <stdint.h>
#include <stdlib.h>
#include <string.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include <EGL/egl.h>
#include <wayland-egl.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include "weston-test-client-helper.h"

@ -30,6 +30,7 @@
#include <signal.h>
#include <string.h>
#include <stdbool.h>
#include <stdint.h>
#include "compositor.h"
#include "ivi-shell/ivi-layout-export.h"

@ -27,6 +27,7 @@
#include "config.h"
#include <stdint.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <string.h>

@ -25,6 +25,8 @@
#include "config.h"
#include <stdint.h>
#include "weston-test-client-helper.h"
TEST(simple_keyboard_test)

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <assert.h>
#include <stdint.h>
#include "compositor.h"

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <assert.h>
#include <ctype.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include "weston-test-client-helper.h"

@ -26,6 +26,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

@ -30,6 +30,7 @@
#include <assert.h>
#include <stdbool.h>
#include <stdint.h>
#include <pixman.h>
#include <wayland-client-protocol.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <assert.h>
#include <signal.h>

@ -26,6 +26,8 @@
#ifndef _WCAP_DECODE_
#define _WCAP_DECODE_
#include <stdint.h>
#define WCAP_HEADER_MAGIC 0x57434150
#define WCAP_FORMAT_XRGB8888 0x34325258

@ -26,6 +26,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.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);

@ -26,6 +26,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>

@ -25,6 +25,7 @@
#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

@ -26,6 +26,7 @@
#include "config.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>

Loading…
Cancel
Save