mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
c88503e3f6
* commit '439902e0d68a0f0d800c21b5e6b598d5fa0c51da': Employ consistent LIBAV_COMPAT_ multiple inclusion guards in compat/ Conflicts: compat/aix/math.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
14 lines
288 B
C
14 lines
288 B
C
/* Work around the class() function in AIX math.h clashing with identifiers
|
|
* named "class". */
|
|
|
|
#ifndef FFMPEG_COMPAT_AIX_MATH_H
|
|
#define FFMPEG_COMPAT_AIX_MATH_H
|
|
|
|
#define class class_in_math_h_causes_problems
|
|
|
|
#include_next <math.h>
|
|
|
|
#undef class
|
|
|
|
#endif /* FFMPEG_COMPAT_AIX_MATH_H */
|