projects
/
libav.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Employ consistent LIBAV_COMPAT_ multiple inclusion guards in compat/
[libav.git]
/
compat
/
aix
/
math.h
1
/* Work around the class() function in AIX math.h clashing with identifiers
2
* named "class". */
3
4
#ifndef LIBAV_COMPAT_AIX_MATH_H
5
#define LIBAV_COMPAT_AIX_MATH_H
6
7
#define class class_in_math_h_causes_problems
8
9
#include_next <math.h>
10
11
#undef class
12
13
#endif
/* LIBAV_COMPAT_AIX_MATH_H */