s390_features.h 305 B

1234567891011121314
  1. /* s390_features.h -- check for s390 features.
  2. * For conditions of distribution and use, see copyright notice in zlib.h
  3. */
  4. #ifndef S390_FEATURES_H_
  5. #define S390_FEATURES_H_
  6. struct s390_cpu_features {
  7. int has_vx;
  8. };
  9. void Z_INTERNAL s390_check_features(struct s390_cpu_features *features);
  10. #endif