1 /* cpu.h -- check for CPU features
2 * Copyright (C) 2013 Intel Corporation Jim Kukunas
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6#ifndef CPU_H_
7#define CPU_H_
8
9extern int x86_cpu_has_sse2;
10extern int x86_cpu_has_sse42;
11extern int x86_cpu_has_pclmulqdq;
12extern int x86_cpu_has_tzcnt;
13
14#endif /* CPU_H_ */
15