test: bump POSIX version for CLOCK_MONOTONIC

test/bench.c:99:16: error: use of undeclared identifier 'CLOCK_MONOTONIC'
        clock_gettime(CLOCK_MONOTONIC, &start);
                      ^
test/bench.c:106:16: error: use of undeclared identifier 'CLOCK_MONOTONIC'
        clock_gettime(CLOCK_MONOTONIC, &end);
                      ^
This commit is contained in:
Jan Beich 2020-10-20 21:11:36 +00:00 committed by Simon Ser
parent b0042828ad
commit ca097d55bc

View file

@ -1,4 +1,4 @@
#define _POSIX_C_SOURCE 199309L
#define _POSIX_C_SOURCE 200112
#include <assert.h>
#include <libliftoff.h>
#include <stdio.h>