math.h 254 B

1234567891011121314
  1. /*
  2. * Workaround aix-specific class() function clashing with ffmpeg class usage
  3. */
  4. #ifndef COMPAT_AIX_MATH_H
  5. #define COMPAT_AIX_MATH_H
  6. #define class class_in_math_h_causes_problems
  7. #include_next <math.h>
  8. #undef class
  9. #endif /* COMPAT_AIX_MATH_H */