aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-06-06 09:34:01 -0400
committerGitHub <noreply@github.com>2017-06-06 09:34:01 -0400
commitfd47a30e75cccfc3789eafa4bfabd66f4696099b (patch)
tree10c1529eb56235b303bdbca905e8b80dce47ae6d /common
parent5ed533a94331ea2d849f900ee20f8932d742e9b5 (diff)
parent7fef2830446e1f98a02f8d8a3bba866b7edd5bd0 (diff)
Merge pull request #1232 from johalun/master-freebsd
FreeBSD fixes
Diffstat (limited to 'common')
-rw-r--r--common/log.c2
-rw-r--r--common/stringop.c2
-rw-r--r--common/util.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/common/log.c b/common/log.c
index 61937495..af1bdc3f 100644
--- a/common/log.c
+++ b/common/log.c
@@ -1,4 +1,4 @@
-#define _POSIX_C_SOURCE 1
+#define _POSIX_C_SOURCE 199506L
#include <errno.h>
#include <libgen.h>
#include <signal.h>
diff --git a/common/stringop.c b/common/stringop.c
index 99e9636d..4a37543d 100644
--- a/common/stringop.c
+++ b/common/stringop.c
@@ -1,4 +1,4 @@
-#define _XOPEN_SOURCE 500
+#define _XOPEN_SOURCE 700
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
diff --git a/common/util.c b/common/util.c
index 34bb5ec1..d6369853 100644
--- a/common/util.c
+++ b/common/util.c
@@ -1,4 +1,4 @@
-#define _XOPEN_SOURCE 500
+#define _XOPEN_SOURCE 700
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>