aboutsummaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2014-08-18 22:43:23 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2014-08-18 22:52:01 +0200
commit371cd5ea215992152a8226d42f2ed41471535d7f (patch)
tree28beaaa214962405b8c791c96bb1fd59e35e0f25 /common.c
parent47bb99261cab035f944a6d49624b59409257cfb0 (diff)
downloadxK-371cd5ea215992152a8226d42f2ed41471535d7f.tar.gz
xK-371cd5ea215992152a8226d42f2ed41471535d7f.tar.xz
xK-371cd5ea215992152a8226d42f2ed41471535d7f.zip
Bump _XOPEN_SOURCE to 600
Otherwise it's not going to compile on FreeBSD, because of e.g. missing v/snprintf() and va_copy().
Diffstat (limited to 'common.c')
-rw-r--r--common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.c b/common.c
index 25bf761..26be47f 100644
--- a/common.c
+++ b/common.c
@@ -19,7 +19,7 @@
*/
#define _POSIX_C_SOURCE 199309L
-#define _XOPEN_SOURCE 500
+#define _XOPEN_SOURCE 600
#include <stdio.h>
#include <stdlib.h>