diff options
| author | Yong Bakos <ybakos@humanoriented.com> | 2016-07-18 12:42:25 -0500 |
|---|---|---|
| committer | Bryce Harrington <bryce@osg.samsung.com> | 2016-07-25 18:39:32 -0700 |
| commit | 2b1c1b2d66945c5cb237a7264759b6dbdf42b02a (patch) | |
| tree | 92393d7df803a33b9a1df9e11ffe2cbf9366786a /tests/connection-test.c | |
| parent | scanner: Use uint32_t instead of uint (diff) | |
| download | wayland-2b1c1b2d66945c5cb237a7264759b6dbdf42b02a.tar wayland-2b1c1b2d66945c5cb237a7264759b6dbdf42b02a.tar.gz wayland-2b1c1b2d66945c5cb237a7264759b6dbdf42b02a.tar.bz2 wayland-2b1c1b2d66945c5cb237a7264759b6dbdf42b02a.tar.lz wayland-2b1c1b2d66945c5cb237a7264759b6dbdf42b02a.tar.xz wayland-2b1c1b2d66945c5cb237a7264759b6dbdf42b02a.tar.zst wayland-2b1c1b2d66945c5cb237a7264759b6dbdf42b02a.zip | |
(multiple): Include stdint.h
Some headers and source files have been using types such as uint32_t
without explicitly including stdint.h.
Explicitly include stdint.h where appropriate.
Signed-off-by: Yong Bakos <ybakos@humanoriented.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'tests/connection-test.c')
| -rw-r--r-- | tests/connection-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/connection-test.c b/tests/connection-test.c index 5d97fd9..3e34f77 100644 --- a/tests/connection-test.c +++ b/tests/connection-test.c @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> #include <stdarg.h> +#include <stdint.h> #include <string.h> #include <assert.h> #include <sys/socket.h> |
