diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-08-18 22:43:23 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-08-18 22:52:01 +0200 |
commit | 371cd5ea215992152a8226d42f2ed41471535d7f (patch) | |
tree | 28beaaa214962405b8c791c96bb1fd59e35e0f25 /common.c | |
parent | 47bb99261cab035f944a6d49624b59409257cfb0 (diff) | |
download | xK-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ */ #define _POSIX_C_SOURCE 199309L -#define _XOPEN_SOURCE 500 +#define _XOPEN_SOURCE 600 #include <stdio.h> #include <stdlib.h> |