commit 2694fd72b6c98da6e8ee11cc14bfe9c02dff16f6
parent 434cbaabf092ec1688b4dfd2d93f38e849531d96
Author: sghctoma <sghctoma@gmail.com>
Date: Wed, 17 Oct 2018 11:09:58 +0200
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:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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>