Skip to content

Commit

Permalink
Change _XOPEN_SOURCE defines to _POSIX_C_SOURCE
Browse files Browse the repository at this point in the history
  • Loading branch information
sghctoma committed Sep 3, 2018
1 parent df730a8 commit 073dcb3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/pool-buffer.c
@@ -1,4 +1,4 @@
#define _XOPEN_SOURCE 600
#define _POSIX_C_SOURCE 200809
#include <assert.h>
#include <cairo/cairo.h>
#include <fcntl.h>
Expand Down
2 changes: 1 addition & 1 deletion sway/commands.c
@@ -1,4 +1,4 @@
#define _XOPEN_SOURCE 600
#define _POSIX_C_SOURCE 200809
#include <ctype.h>
#include <stdarg.h>
#include <stdlib.h>
Expand Down
2 changes: 1 addition & 1 deletion sway/commands/bar.c
@@ -1,4 +1,4 @@
#define _XOPEN_SOURCE 600
#define _POSIX_C_SOURCE 200809
#include <string.h>
#include <strings.h>
#include <wlr/util/log.h>
Expand Down
2 changes: 1 addition & 1 deletion sway/commands/output/background.c
@@ -1,4 +1,4 @@
#define _XOPEN_SOURCE 600
#define _POSIX_C_SOURCE 200809
#include <libgen.h>
#include <strings.h>
#include <unistd.h>
Expand Down
2 changes: 1 addition & 1 deletion sway/tree/workspace.c
@@ -1,4 +1,4 @@
#define _XOPEN_SOURCE 600
#define _POSIX_C_SOURCE 200809
#include <ctype.h>
#include <limits.h>
#include <stdbool.h>
Expand Down
2 changes: 1 addition & 1 deletion swaybar/ipc.c
@@ -1,4 +1,4 @@
#define _XOPEN_SOURCE 600
#define _POSIX_C_SOURCE 200809
#include <limits.h>
#include <string.h>
#include <strings.h>
Expand Down

0 comments on commit 073dcb3

Please sign in to comment.