1/* arm.h -- check for ARM features.
2 * For conditions of distribution and use, see copyright notice in zlib.h
3 */
4
5#ifndef ARM_H_
6#define ARM_H_
7
8extern int arm_cpu_has_neon;
9extern int arm_cpu_has_crc32;
10
11void Z_INTERNAL arm_check_features(void);
12
13#endif /* ARM_H_ */
14