diff options
author | Måns Rullgård <mans@mansr.com> | 2007-06-17 00:01:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-06-17 00:01:30 +0000 |
commit | 699b3f99d0376a8fd5159bdad857228bda59cff6 (patch) | |
tree | 5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libavutil/softfloat.h | |
parent | 99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff) | |
download | ffmpeg-699b3f99d0376a8fd5159bdad857228bda59cff6.tar.gz |
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/softfloat.h')
-rw-r--r-- | libavutil/softfloat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h index 422c1b3d6d..acf29b2ac5 100644 --- a/libavutil/softfloat.h +++ b/libavutil/softfloat.h @@ -19,6 +19,9 @@ * */ +#ifndef AVUTIL_SOFTFLOAT_H +#define AVUTIL_SOFTFLOAT_H + #include <stdint.h> #define MIN_EXP -126 @@ -122,3 +125,5 @@ static inline int av_sf2int(SoftFloat v, int frac_bits){ if(v.exp >= 0) return v.mant << v.exp ; else return v.mant >>(-v.exp); } + +#endif |