2012-10-25 16:49:26 +02:00
|
|
|
/* Work around the class() function in AIX math.h clashing with identifiers
|
|
|
|
* named "class". */
|
2013-07-04 21:53:08 +02:00
|
|
|
|
2013-07-19 10:56:10 +02:00
|
|
|
#ifndef FFMPEG_COMPAT_AIX_MATH_H
|
|
|
|
#define FFMPEG_COMPAT_AIX_MATH_H
|
2013-07-04 21:53:08 +02:00
|
|
|
|
|
|
|
#define class class_in_math_h_causes_problems
|
|
|
|
|
|
|
|
#include_next <math.h>
|
|
|
|
|
|
|
|
#undef class
|
|
|
|
|
2013-07-19 10:56:10 +02:00
|
|
|
#endif /* FFMPEG_COMPAT_AIX_MATH_H */
|