diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-25 16:49:26 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-07-18 18:12:38 +0200 |
commit | 439902e0d68a0f0d800c21b5e6b598d5fa0c51da (patch) | |
tree | b9febaa4971befd75a6d04ae032ae3c8495d1b94 /compat/tms470/math.h | |
parent | d010e95f86089abe9a3d4d4a66ac8102312d28a4 (diff) | |
download | ffmpeg-439902e0d68a0f0d800c21b5e6b598d5fa0c51da.tar.gz |
Employ consistent LIBAV_COMPAT_ multiple inclusion guards in compat/
Also fix a comment and an #endif comment.
Diffstat (limited to 'compat/tms470/math.h')
-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..ac8d3cdf54 100644 --- a/compat/tms470/math.h +++ b/compat/tms470/math.h @@ -1,3 +1,6 @@ +#ifndef LIBAV_COMPAT_TMS470_MATH_H +#define LIBAV_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 /* LIBAV_COMPAT_TMS470_MATH_H */ |