FFmpeg/compat/aix/math.h
Diego Biurrun 439902e0d6 Employ consistent LIBAV_COMPAT_ multiple inclusion guards in compat/
Also fix a comment and an #endif comment.
2013-07-18 18:12:38 +02:00

14 lines
285 B
C

/* 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 */