git.videolan.org
/
ffmpeg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
687525b2901136b4eef25bc488378b1baca23b11
[ffmpeg.git]
/
compat
/
aix
/
math.h
1
/*
2
* Workaround aix-specific class() function clashing with ffmpeg class usage
3
*/
4
5
#ifndef COMPAT_AIX_MATH_H
6
#define COMPAT_AIX_MATH_H
7
8
#define class class_in_math_h_causes_problems
9
10
#include_next <math.h>
11
12
#undef class
13
14
#endif /* COMPAT_AIX_MATH_H */