diff options
author | emersion <contact@emersion.fr> | 2018-08-16 11:02:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-16 11:02:21 +0100 |
commit | d66d33f5a2d32e437733ec894163242aa95a001e (patch) | |
tree | 4c8bde390dc39b9ad7982716b3e1f531d6102ba7 /backend | |
parent | 1a73baac94a18e55be3a22aab4ca8fee35225941 (diff) | |
parent | f86f1daf9a6f143d003bcba8b16a737d6510f2e5 (diff) |
Merge pull request #1188 from emersion/freebsd-fixes
Fix build on FreeBSD
Diffstat (limited to 'backend')
-rw-r--r-- | backend/wayland/wl_seat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/wayland/wl_seat.c b/backend/wayland/wl_seat.c index 5163e804..8fb4aa5f 100644 --- a/backend/wayland/wl_seat.c +++ b/backend/wayland/wl_seat.c @@ -1,4 +1,4 @@ -#define _XOPEN_SOURCE 500 +#define _POSIX_C_SOURCE 200809L #include <assert.h> #include <stdint.h> #include <stdlib.h> |