Commit | Line | Data |
---|---|---|
439902e0 DB |
1 | /* Work around the class() function in AIX math.h clashing with identifiers |
2 | * named "class". */ | |
d3635f3a | 3 | |
439902e0 DB |
4 | #ifndef LIBAV_COMPAT_AIX_MATH_H |
5 | #define LIBAV_COMPAT_AIX_MATH_H | |
d3635f3a LB |
6 | |
7 | #define class class_in_math_h_causes_problems | |
8 | ||
9 | #include_next <math.h> | |
10 | ||
11 | #undef class | |
12 | ||
439902e0 | 13 | #endif /* LIBAV_COMPAT_AIX_MATH_H */ |