Files
cpp-project-template/third_party/zlib-ng/arch/s390/s390_features.h

15 lines
305 B
C
Raw Normal View History

2025-08-25 15:24:22 +08:00
/* s390_features.h -- check for s390 features.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
#ifndef S390_FEATURES_H_
#define S390_FEATURES_H_
struct s390_cpu_features {
int has_vx;
};
void Z_INTERNAL s390_check_features(struct s390_cpu_features *features);
#endif