zlib-ng/test/test_cpu_features.h
Vladislav Shchapov 5401b24a16 Allow disabling runtime CPU features detection in tests and benchmarks
Signed-off-by: Vladislav Shchapov <vladislav@shchapov.ru>
2024-04-04 13:47:02 +02:00

13 lines
187 B
C

#ifndef TEST_CPU_FEATURES_H
#define TEST_CPU_FEATURES_H
#ifndef DISABLE_RUNTIME_CPU_DETECTION
# include "cpu_features.h"
extern struct cpu_features test_cpu_features;
#endif
#endif