diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-11-06 12:46:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-06 12:46:29 +0100 |
commit | 2bf482e90f04dd7e402b37cb1d6c4d7fa958887c (patch) | |
tree | 8ad9cb3f24eee5f76e06f250b9c5884e7238b5d2 /examples/input-method.c | |
parent | d7b010024a4e46acb1eb5c54c1ce31dd816fb995 (diff) | |
parent | a8bc8c65ce63abbe15ceeaf0460b11265cdf5c29 (diff) |
Merge pull request #1357 from emersion/xopen-source
Use _POSIX_C_SOURCE, use shm_open
Diffstat (limited to 'examples/input-method.c')
-rw-r--r-- | examples/input-method.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/input-method.c b/examples/input-method.c index 3e485d1c..4e375306 100644 --- a/examples/input-method.c +++ b/examples/input-method.c @@ -1,6 +1,7 @@ #define _POSIX_C_SOURCE 200809L #include <assert.h> #include <errno.h> +#include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -9,7 +10,6 @@ #include <unistd.h> #include <wayland-client.h> #include <wayland-egl.h> -#include <wlr/render/egl.h> #include "input-method-unstable-v2-client-protocol.h" #include "text-input-unstable-v3-client-protocol.h" #include "xdg-shell-client-protocol.h" |