aboutsummaryrefslogtreecommitdiff
path: root/common/loop.c
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-10-17 11:09:58 +0200
committerFurkan Sahin <furkan-dev@proton.me>2018-10-17 11:09:58 +0200
commitaea2234d45b87a8eb4dd436ba79af25abfb8751c (patch)
tree962cc7aaf925e56f4e3d601c3e24bf0eade24998 /common/loop.c
parent5e1a53659eb03d3f433e767d9ffa3a7c6b834301 (diff)
Increase _POSIX_C_SOURCE to 200112L
CLOCK_MONOTONIC appeared in IEEE Std. 1003.1-200x, it was not part of POSIX.1b (the 1993 version), and FreeBSD treats it accordingly.
Diffstat (limited to 'common/loop.c')
-rw-r--r--common/loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/loop.c b/common/loop.c
index 750bee75..82b80017 100644
--- a/common/loop.c
+++ b/common/loop.c
@@ -1,4 +1,4 @@
-#define _POSIX_C_SOURCE 199309L
+#define _POSIX_C_SOURCE 200112L
#include <limits.h>
#include <string.h>
#include <stdbool.h>