diff options
author | Guillaume Champagne <champagne.guillaume.c@gmail.com> | 2020-01-27 20:14:29 -0500 |
---|---|---|
committer | Pekka Paalanen <pq@iki.fi> | 2020-01-29 09:49:41 +0000 |
commit | f1e8fc9dbfbe5025be1ad04ef3dab0700a519dba (patch) | |
tree | bd89e1fa4f4073d6650017f99b45cc2ce9e76074 /xwayland | |
parent | 1cb09480e29b5e9bec50dc4ce1bb56b7327e499b (diff) |
libweston: add missing include
Fixes missing prototypes compilation warnings emitted when a function
is defined before its prototype is declared.
These warnings were introduced over time since the switch to meson
because the -Wmissing-protoypes was not included in the compilation
arguments.
Signed-off-by: Guillaume Champagne <champagne.guillaume.c@gmail.com>
Diffstat (limited to 'xwayland')
-rw-r--r-- | xwayland/selection.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xwayland/selection.c b/xwayland/selection.c index e4d797ae..c4845f20 100644 --- a/xwayland/selection.c +++ b/xwayland/selection.c @@ -32,6 +32,7 @@ #include <fcntl.h> #include <errno.h> +#include <libweston/libweston.h> #include "xwayland.h" #include "shared/helpers.h" |