diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-19 10:56:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-19 10:56:10 +0200 |
commit | c88503e3f6bd7881f147d340bf222a629daa55fc (patch) | |
tree | b8feb316bc6924f9b648b7e57f6faa1dd6afe248 /compat/tms470 | |
parent | 8740762c43dc92cfefa58769bb8cfade82aa695c (diff) | |
parent | 439902e0d68a0f0d800c21b5e6b598d5fa0c51da (diff) | |
download | ffmpeg-c88503e3f6bd7881f147d340bf222a629daa55fc.tar.gz |
Merge commit '439902e0d68a0f0d800c21b5e6b598d5fa0c51da'
* commit '439902e0d68a0f0d800c21b5e6b598d5fa0c51da':
Employ consistent LIBAV_COMPAT_ multiple inclusion guards in compat/
Conflicts:
compat/aix/math.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'compat/tms470')
-rw-r--r-- | compat/tms470/math.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compat/tms470/math.h b/compat/tms470/math.h index 1104d744e7..ad531297a1 100644 --- a/compat/tms470/math.h +++ b/compat/tms470/math.h @@ -1,3 +1,6 @@ +#ifndef FFMPEG_COMPAT_TMS470_MATH_H +#define FFMPEG_COMPAT_TMS470_MATH_H + #include_next <math.h> #undef INFINITY @@ -5,3 +8,5 @@ #define INFINITY (*(const float*)((const unsigned []){ 0x7f800000 })) #define NAN (*(const float*)((const unsigned []){ 0x7fc00000 })) + +#endif /* FFMPEG_COMPAT_TMS470_MATH_H */ |