blob: caa181709ded25429b26ef7901e02faac1c170c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Work around the class() function in AIX math.h clashing with identifiers
* named "class". */
#ifndef LIBAV_COMPAT_AIX_MATH_H
#define LIBAV_COMPAT_AIX_MATH_H
#define class class_in_math_h_causes_problems
#include_next <math.h>
#undef class
#endif /* LIBAV_COMPAT_AIX_MATH_H */
|