2013-07-04 21:53:08 +02:00
|
|
|
/*
|
2013-07-05 12:50:02 +02:00
|
|
|
* Workaround aix-specific class() function clashing with ffmpeg class usage
|
2013-07-04 21:53:08 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMPAT_AIX_MATH_H
|
|
|
|
#define COMPAT_AIX_MATH_H
|
|
|
|
|
|
|
|
#define class class_in_math_h_causes_problems
|
|
|
|
|
|
|
|
#include_next <math.h>
|
|
|
|
|
|
|
|
#undef class
|
|
|
|
|
|
|
|
#endif /* COMPAT_AIX_MATH_H */
|