You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
288B

  1. /* Work around the class() function in AIX math.h clashing with identifiers
  2. * named "class". */
  3. #ifndef FFMPEG_COMPAT_AIX_MATH_H
  4. #define FFMPEG_COMPAT_AIX_MATH_H
  5. #define class class_in_math_h_causes_problems
  6. #include_next <math.h>
  7. #undef class
  8. #endif /* FFMPEG_COMPAT_AIX_MATH_H */