Welcome to mirror list, hosted at ThFree Co, Russian Federation.

math.h « aix « compat - github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 687525b2901136b4eef25bc488378b1baca23b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Workaround aix-specific class() function clashing with ffmpeg class usage
 */

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