ck/regressions/ck_pr/benchmark/ck_pr_fas_64.c
Daniel Baumann 7f70a05c55
Adding upstream version 0.6.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-09 07:35:45 +01:00

17 lines
251 B
C

#include <ck_pr.h>
#ifdef CK_F_PR_FAS_64
#define ATOMIC ck_pr_fas_64(object, 1)
#define ATOMIC_STRING "ck_pr_fas_64"
#include "benchmark.h"
#else
#warning Did not find FAS_64 implementation.
#include <stdlib.h>
int
main(void)
{
return 0;
}
#endif