1 /* power_features.h -- check for POWER CPU features
2  * Copyright (C) 2020 Matheus Castanho <[email protected]>, IBM
3  * Copyright (C) 2021 Mika T. Lindqvist <[email protected]>
4  * For conditions of distribution and use, see copyright notice in zlib.h
5  */
6 
7 #ifndef POWER_H_
8 #define POWER_H_
9 
10 extern int power_cpu_has_altivec;
11 extern int power_cpu_has_arch_2_07;
12 extern int power_cpu_has_arch_3_00;
13 
14 void Z_INTERNAL power_check_features(void);
15 
16 #endif /* POWER_H_ */
17